-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
executable file
·63 lines (63 loc) · 1.32 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
module.exports = {
root: true,
extends: [
'vuepress',
'standard',
'plugin:vue-libs/recommended',
'plugin:vue/recommended',
'prettier',
'prettier/standard',
'prettier/vue',
'plugin:prettier/recommended'
],
rules: {
indent: ['error', 2, { MemberExpression: 'off' }],
'no-undef': ['error'],
'operator-linebreak': ['error', 'before'],
'vue/match-component-file-name': [
'error',
{
extensions: ['js', 'vue'],
shouldMatchCase: false,
},
],
camelcase: [
'error',
{
properties: 'never',
ignoreDestructuring: true,
ignoreGlobals: true,
ignoreImports: true,
allow: ['^.*_.*$'],
},
],
'prettier/prettier': 'error'
},
plugins: ['json-format', 'prettier'],
settings: {
'json/sort-package-json': [
'scripts',
'devDependencies',
'dependencies',
'name',
'version',
'author',
'description',
'homepage',
'repository',
'bugs',
'license',
'private',
'prettier',
'pro'
],
'json/ignore-files': ['**/package-lock.json'],
'json/json-with-comments-files': [
// '.vscode/**',
'**/tsconfig.json',
'**/jsconfig.json',
'.vscode/settings.json',
'.vscode/keybindings.json'
]
},
}