-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.cjs
80 lines (77 loc) · 2.68 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
globals: {},
// 指定如何解析语法
parser: 'vue-eslint-parser',
// 优先级低于 parse 的语法解析配置
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
},
// 继承某些已有的规则
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/recommended',
// 'plugin:prettier/recommended',
// 'prettier',
],
/**
* "off" 或 0 ==> 关闭规则
* "warn" 或 1 ==> 打开的规则作为警告(不影响代码执行)
* "error" 或 2 ==> 规则作为一个错误(代码不能执行,界面报错)
*/
rules: {
// eslint (http://eslint.cn/docs/rules)
semi: ['error', 'always'], // 强制在语句末尾使用分号
quotes: ['error', 'single', { allowTemplateLiterals: true }], // 强制使用单引号 & 允许字符串使用反勾号
// typeScript (https://typescript-eslint.io/rules)
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/semi': 'error', // 强制在语句末尾使用分号
// 接口和类型别名中的成员之间分隔符
'@typescript-eslint/member-delimiter-style': [
'error',
{
'multiline': { 'delimiter': 'semi', 'requireLast': true },
'singleline': { 'delimiter': 'semi', 'requireLast': false },
'multilineDetection': 'brackets'
}
],
'no-multiple-empty-lines': ['error', { 'max': 1 }], // 空行最多不能超过 1 行
// vue (https://eslint.vuejs.org/rules)
'vue/singleline-html-element-content-newline': 'off', // 在单行元素的内容前后需要换行符
'vue/require-default-prop': 'off', // 关闭 props 需要默认值
'vue/no-v-html': 'off', // 关闭 Disallow use of v-html to prevent XSS attack
'vue/multi-word-component-names': 'off', // 关闭 组件名称始终是多个单词
'no-unused-vars': 'off', // 禁止使用未声明的变量
'vue/v-on-event-hyphenation': 'off', // 禁止对模板中的自定义组件强制执行 v-on 事件命名样式
// 控制一/多行可接受的属性量
'vue/max-attributes-per-line': [
'error',
{
singleline: { max: 10 },
multiline: { max: 1 },
},
],
// 空标签需要自闭合
'vue/html-self-closing': [
'error',
{
html: {
void: 'always',
normal: 'never',
component: 'always',
},
svg: 'always',
math: 'always',
},
],
},
};