Skip to content

Commit

Permalink
Turn off lines-between-class-members eslint error #267 (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
neu5 authored Jan 16, 2024
1 parent c66db20 commit 32f575e
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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": [
Expand All @@ -68,4 +59,4 @@
],
"react/jsx-filename-extension": "off"
}
}
}

0 comments on commit 32f575e

Please sign in to comment.