-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
38 lines (38 loc) · 976 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'airbnb-base',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
settings: {
'import/resolver': {
alias: [
/**
* 由于 vite 使用 / 代表项目根目录
* 而 eslint 和 vscode 都会认为这是一个绝对路径
* 所以需要分别在 eslint 的配置文件和 jsconfig.json 中配置 alias
* 这里只配置 src 文件夹,因为项目中的 js 源码都在 src 下
*/
['/src', './src'],
],
},
},
rules: {
'no-use-before-define': 'off',
'no-mixed-operators': 'off',
'no-multi-assign': 'off',
'no-param-reassign': 'off',
'no-plusplus': 'off',
'no-underscore-dangle': ['error', { allowAfterThis: true }],
'import/prefer-default-export': 'off',
'import/no-absolute-path': 'off',
'linebreak-style': 'off',
'max-len': 'off',
},
};