Skip to content

Commit

Permalink
edit eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
aholachek committed Jun 11, 2020
1 parent 77d3096 commit cb0bfdf
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,27 @@ module.exports = {
plugins: ['@typescript-eslint'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended'
'plugin:react/recommended',
],
settings: {
react: {
version: 'detect'
}
version: 'detect',
},
},
rules: {
indent: 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/member-delimiter-style': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-member-accessibility': 0,
'@typescript-eslint/no-object-literal-type-assertion': 0,
'@typescript-eslint/array-type': 0,
'@typescript-eslint/explicit-member-accessibility': 0,
'@typescript-eslint/no-parameter-properties': 0
}
'@typescript-eslint/member-delimiter-style': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
},
}

0 comments on commit cb0bfdf

Please sign in to comment.