forked from likecoin/like-co
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
51 lines (50 loc) · 1.05 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
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'airbnb-base',
'plugin:vue/recommended',
],
// add your custom rules here
rules: {
// don't require .vue extension when importing
'import/extensions': ['error', 'always', {
js: 'never',
mjs: 'never',
vue: 'never'
}],
'vue/attributes-order': [
'error',
{
order: [
'LIST_RENDERING',
'CONDITIONALS',
'RENDER_MODIFIERS',
'GLOBAL',
'UNIQUE',
'BINDING',
'DEFINITION',
'OTHER_ATTR',
'CONTENT',
'EVENTS',
],
},
],
'vue/name-property-casing': ['error', 'kebab-case'],
'vue/attribute-hyphenation': 'off',
'vue/html-closing-bracket-newline': ['error', { multiline: 'always' }],
'vue/html-closing-bracket-spacing': ['error'],
},
globals: {},
settings: {
'import/resolver': {
webpack: 'webpack.config.js',
},
},
};