forked from witnet/sheikah
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
85 lines (82 loc) · 2.17 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
const path = require('path')
module.exports = {
root: true,
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'script',
},
plugins: ['import'],
extends: [
'@vue/prettier',
'@vue/prettier/@typescript-eslint',
'@vue/typescript',
'plugin:import/errors',
'plugin:import/typescript',
'plugin:import/warnings',
'plugin:vue/recommended',
'prettier/vue',
],
rules: {
'no-debugger': 'error',
'no-multiple-empty-lines': ['error', { max: 1 }],
'import/order': 'error',
'vue/array-bracket-spacing': 'error',
'vue/arrow-spacing': 'error',
'vue/block-spacing': 'error',
'vue/brace-style': 'error',
'vue/camelcase': 'error',
'vue/comma-dangle': ['error', 'always-multiline'],
'vue/component-name-in-template-casing': 'error',
'vue/dot-location': ['error', 'property'],
'vue/eqeqeq': 'error',
'vue/key-spacing': 'error',
'vue/keyword-spacing': 'error',
'vue/no-boolean-default': ['error', 'default-false'],
'vue/no-deprecated-scope-attribute': 'error',
'vue/no-empty-pattern': 'error',
'vue/object-curly-spacing': ['error', 'always'],
'vue/padding-line-between-blocks': 'error',
'vue/space-infix-ops': 'error',
'vue/space-unary-ops': 'error',
'vue/v-on-function-call': 'error',
'vue/v-slot-style': [
'error',
{
atComponent: 'v-slot',
default: 'v-slot',
named: 'longform',
},
],
'vue/valid-v-slot': 'error',
},
overrides: [
{
files: ['**/*.spec.js'],
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module',
},
env: { jest: true },
globals: {
mount: false,
shallowMount: false,
shallowMountView: false,
createComponentMocks: false,
createModuleStore: false,
i18n: false,
},
},
],
settings: {
'import/resolver': {
alias: {
map: [['@', path.resolve(__dirname, 'src')]],
extensions: ['.vue', '.js', '.ts', '.d.ts'],
},
},
'vue-i18n': {
localeDir: path.resolve(__dirname, 'src', 'locales') + '/*.{json}',
messageSyntaxVersion: '^9.0.0',
},
},
}