Skip to content

Commit 05c3022

Browse files
committed
feat: add rules
1 parent 4a4c53d commit 05c3022

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.eslintrc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ module.exports = {
1414
rules: {
1515
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
1616
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17-
'comma-dangle': 'off'
17+
'semi': 'off',
18+
'comma-dangle': 'off',
19+
'@typescript-eslint/ban-ts-comment': 'off',
20+
'@typescript-eslint/no-non-null-assertion': 'off'
1821
}
1922
}

0 commit comments

Comments
 (0)