We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4c53d commit 05c3022Copy full SHA for 05c3022
.eslintrc.js
@@ -14,6 +14,9 @@ module.exports = {
14
rules: {
15
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17
- 'comma-dangle': 'off'
+ 'semi': 'off',
18
+ 'comma-dangle': 'off',
19
+ '@typescript-eslint/ban-ts-comment': 'off',
20
+ '@typescript-eslint/no-non-null-assertion': 'off'
21
}
22
0 commit comments