-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
37 lines (37 loc) · 1.13 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
env: {
browser: true,
node: true,
es6: true
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'standard', 'plugin:prettier/recommended', 'plugin:storybook/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier'],
// extends: [
// 'eslint:recommended',
// 'plugin:@typescript-eslint/recommended',
// 'plugin:@typescript-eslint/eslint-recommended',
// 'standard',
// 'plugin:prettier/recommended',
// ],
globals: {
// 这里填入你的项目需要的全局变量
// 这里值为 false 表示这个全局变量不允许被重新赋值,比如:
// React: false,
// ReactDOM: false
},
settings: {
// 'import/resolver': { node: { extensions: ['.mjs', '.js', '.json', '.ts', '.tsx'] } },
// 'import/extensions': ['.js', '.mjs', '.jsx', '.ts', '.tsx'],
},
rules: {
// 这里填入你的项目需要的个性化配置
'no-debugger': 'warn',
'accessor-pairs': 'warn',
yoda: ['error', 'always', {
onlyEquality: true
}],
'no-unused-vars': 'warn'
}
};