forked from getgridea/gridea
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
61 lines (61 loc) · 1.72 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
'@vue/typescript',
],
rules: {
// js 和 ts 不需要检查 import 的文件后缀
'import/extensions': ['error', 'always', {
'js': 'never',
'ts': 'never',
}],
'no-restricted-syntax': ['error', 'WithStatement', 'BinaryExpression[operator=\'in\']'],
// 可以 debugger
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
// 不要分号
'semi': [2, 'never'],
// 全部单引号
'quotes': [2, 'single'],
// 对象缩写
'object-shorthand': 0,
// 可以使用 console
'no-console': 0,
// 允许使用匿名函数
'func-names': 0,
// 允许属性的 key 值加引号
'quote-props': 0,
// 允许对函数的参数赋值
'no-param-reassign': 0,
// 函数的参数可以不使用
'no-unused-vars': 0,
// 不用强制 export default
'import/prefer-default-export': 0,
// 不禁止箭头函数直接return对象
'arrow-body-style': 0,
// 允许空行
'no-trailing-spaces': ['error', { 'skipBlankLines': true }],
// 允许short circuit evaluations
'no-unused-expressions': ['error', { 'allowShortCircuit': true, 'allowTernary': true }],
// 最长字符
'max-len': ['error', { 'code': 1500 }],
'vue/no-parsing-error': [2, {
'invalid-first-character-of-tag-name': false,
}],
// no-plusplus
'no-plusplus': 0,
'class-methods-use-this': 0,
'no-irregular-whitespace': 0,
'consistent-return': 0,
'import/no-extraneous-dependencies': 0,
'global-require': 0,
'no-continue': 0,
},
parserOptions: {
parser: '@typescript-eslint/parser',
},
}