From 32f575e98265084c6e4fbc4aadefd0ca20283d5a Mon Sep 17 00:00:00 2001 From: neu5 Date: Tue, 16 Jan 2024 05:48:05 +0100 Subject: [PATCH] Turn off lines-between-class-members eslint error #267 (#268) --- .eslintrc | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/.eslintrc b/.eslintrc index 3567b98..148f591 100644 --- a/.eslintrc +++ b/.eslintrc @@ -10,22 +10,12 @@ "parserOptions": { "ecmaVersion": 2021, "requireConfigFile": false, - "project": [ - "packages/**/tsconfig.json" - ] + "project": ["packages/**/tsconfig.json"] }, - "plugins": [ - "import", - "@typescript-eslint" - ], - "extends": [ - "airbnb-typescript" - ], + "plugins": ["import", "@typescript-eslint"], + "extends": ["airbnb-typescript"], "rules": { - "eol-last": [ - "error", - "always" - ], + "eol-last": ["error", "always"], "import/no-unresolved": 2, "import/no-commonjs": 2, "no-console": 0, @@ -57,6 +47,7 @@ } ], "@typescript-eslint/indent": "off", + "@typescript-eslint/lines-between-class-members": "off", "@typescript-eslint/quotes": "off", "@typescript-eslint/comma-dangle": "off", "@typescript-eslint/consistent-type-imports": [ @@ -68,4 +59,4 @@ ], "react/jsx-filename-extension": "off" } -} \ No newline at end of file +}