Skip to content

Commit

Permalink
Updated eslint config to synchronize with template project'
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickroberts committed Jan 1, 2021
1 parent b823d5a commit 573c753
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@
"react",
"react-hooks"
],
"root": true,
"rules": {
"@typescript-eslint/consistent-type-definitions": [
"error",
"interface"
],
"@typescript-eslint/lines-between-class-members": "error",
"@typescript-eslint/member-delimiter-style": "error",
"@typescript-eslint/no-dupe-class-members": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-redeclare": "error",
Expand Down Expand Up @@ -67,6 +70,15 @@
]
}
],
"lines-between-class-members": "off",
"no-bitwise": "off",
"no-dupe-class-members": "off",
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-plusplus": [
"error",
{
Expand Down

0 comments on commit 573c753

Please sign in to comment.