forked from Honeypotfi/honeypot-front-end
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
61 lines (61 loc) · 1.52 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
module.exports = {
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": [
"@nuxtjs",
"plugin:nuxt/recommended",
"prettier",
"@nuxtjs/eslint-config-typescript"
],
"plugins": [],
"rules": {
"multiline-ternary": "off",
"import/named": "off",
"import/no-named-as-default": "off",
"no-useless-return": "off",
"import/first": "off",
"require-await": "off",
"lines-between-class-members": "off",
"spaced-comment": "off",
"brace-style": "off",
"no-trailing-spaces": "off",
"arrow-parens": "off",
"object-curly-spacing": "off",
"@typescript-eslint/no-unused-vars": "off",
"comma-spacing": "off",
"space-infix-ops": "off",
"space-in-parens": "off",
"no-multi-spaces": "off",
"curly": "off",
"no-multiple-empty-lines": "off",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off",
"keyword-spacing": "off",
"padded-blocks": "off",
"vue/html-indent": "off",
"no-tabs": "off",
"key-spacing": "off",
"@typescript-eslint/no-var-requires": "off",
"space-before-blocks": "off",
"semi": "off",
"no-console": "off",
"vue/no-v-html": "off",
"no-new-object": "off",
"no-extend-native": "off",
"one-var": "off",
"comma-dangle": "off",
"quotes": 0,
"indent": 0,
"quote-props": 0,
"space-before-function-paren": 0,
"eol-last": 0,
"operator-linebreak": 0,
"block-spacing": 0,
"import/order": 0,
"arrow-spacing": 0,
"dot-location": 0
}
}