-
-
Notifications
You must be signed in to change notification settings - Fork 521
/
.eslintrc.js
91 lines (91 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
module.exports = {
root: true,
env: {
node: true,
browser: true,
es6: true,
},
extends: ['plugin:vue/essential', 'eslint:recommended', 'prettier/vue', 'plugin:prettier/recommended'],
rules: {
curly: 'error',
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-mixed-operators': 'error',
'no-param-reassign': 'error',
'sort-imports-es6-autofix/sort-imports-es6': [
2,
{
ignoreCase: false,
ignoreMemberSort: false,
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
},
],
'vue/attribute-hyphenation': ['error', 'always'],
'vue/attributes-order': [
2,
{
order: [
'GLOBAL', // id
'DEFINITION', // is
'UNIQUE', // ref, key, slot
'CONDITIONALS', // v-if, v-else-if, v-else, v-show, v-cloak
'LIST_RENDERING', // v-for
'OTHER_ATTR', // all unspecified bound & unbound attributes
'BINDING', // v-model
'RENDER_MODIFIERS', // v-pre, v-once
'CONTENT', // v-html, v-text
'EVENTS', // v-on
],
},
],
'vue/component-name-in-template-casing': ['error', 'kebab-case'],
'vue/html-end-tags': 'error',
'vue/html-self-closing': [
'error',
{
html: {
void: 'always',
normal: 'always',
component: 'always',
},
svg: 'always',
math: 'always',
},
],
'vue/name-property-casing': ['error', 'kebab-case'],
'vue/no-multi-spaces': 'error',
'vue/order-in-components': [
'error',
{
order: [
'el',
'name',
'parent',
'functional',
['delimiters', 'comments'],
['components', 'directives', 'filters'],
'extends',
'mixins',
'inheritAttrs',
'model',
['props', 'propsData'],
'data',
'computed',
'watch',
'LIFECYCLE_HOOKS',
'methods',
['template', 'render'],
'renderError',
],
},
],
'vue/require-prop-types': ['error'],
'vue/require-valid-default-prop': ['error'],
},
globals: {},
parserOptions: {
ecmaVersion: 2018,
parser: 'babel-eslint',
},
plugins: ['vue', 'sort-imports-es6-autofix'],
};