-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
23 lines (23 loc) · 882 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint/eslint-plugin'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
root: true,
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'no-irregular-whitespace': 'off',
'no-extra-boolean-cast': 'off',
'no-inner-declarations': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-extra-semi': 'off',
'no-extra-semi': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-types': 'off',
},
};