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 +}