-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
36 lines (36 loc) · 1.16 KB
/
.eslintrc
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
{
"extends": [
"eslint-config-2o3t/vue",
"plugin:vue/recommended"
],
"rules": {
"vue/require-default-prop": "off",
"vue/no-unused-vars": "off",
"vue/no-side-effects-in-computed-properties": "off",
"vue/no-template-shadow": "off",
"vue/no-lone-template": "off",
"vue/no-mutating-props": "off",
"vue/no-v-html": "off",
"vue/no-unused-components": "off",
"vue/require-v-for-key": "off",
"vue/component-tags-order": "off",
"vue/return-in-computed-property": "off",
"vue/require-prop-type-constructor": "off",
"vue/valid-v-on": "off",
"vue/valid-v-bind-sync": "off",
"vue/no-use-v-if-with-v-for": "off",
"vue/require-prop-types": "off",
"valid-jsdoc": "off",
"no-return-assign": "off",
"no-unused-vars": "off",
"no-undef": "off",
"no-irregular-whitespace": "off",
"no-dupe-keys": "off",
"no-bitwise": "off",
"no-lone-blocks": "off",
"no-empty": "off",
"no-sequences": "off",
"array-callback-return": "off",
"no-self-assign": "off"
}
}