-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.node.js
50 lines (42 loc) · 1.22 KB
/
.eslintrc.node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
env: {
es6: true,
browser: true,
node: true
},
plugins: [
'@typescript-eslint',
],
ignorePatterns: [
'_vite',
'.eslintrc.*',
'node_modules',
'dist',
'build',
],
rules:{
'prettier/prettier': ['warn', {
tabWidth: 4,
singleQuote: true,
endOfLine: 'auto',
printWidth: 110,
}],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
semi: ['error', 'always'],
quotes: ['warn', 'single', { allowTemplateLiterals: true }],
}
};