From 00d0b484c909650b5481146a4ae0ab3479d9c981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Fri, 23 Aug 2024 12:07:49 +0200 Subject: [PATCH] Update eslint configuration to include the new plugin --- .eslintrc.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 86c86f3..930f910 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -6,7 +6,8 @@ "sourceType": "module" }, "plugins": [ - "@typescript-eslint" + "@typescript-eslint", + "@stylistic/eslint-plugin" ], "rules": { "@typescript-eslint/naming-convention": [ @@ -16,7 +17,7 @@ "format": [ "camelCase", "PascalCase" ] } ], - "@typescript-eslint/semi": "warn", + "@stylistic/semi": "warn", "curly": "warn", "eqeqeq": "warn", "no-throw-literal": "warn", @@ -27,4 +28,4 @@ "dist", "**/*.d.ts" ] -} \ No newline at end of file +}