-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc.js
33 lines (33 loc) · 897 Bytes
/
.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
module.exports = {
extends: [
'eslint:recommended',
'plugin:vue/recommended'
],
env: {
browser: true,
node: true,
},
globals: {
'monaco': true,
'process': true,
'dw': true,
'XML': true,
'request': true,
'response': true,
'session': true
},
// Ignore Lint Rules that are Overkill
rules: {
'no-arrow-condition': 'off',
'space-before-blocks': 'off',
'space-return-throw-case': 'off',
'vue/attributes-order': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/html-closing-bracket-spacing': 'off',
'vue/html-indent': 'off',
'vue/html-self-closing': 'off',
'vue/max-attributes-per-line': 'off',
'vue/order-in-components': 'off',
'vue/singleline-html-element-content-newline': 'off'
}
}