-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 808 Bytes
/
.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
37
{
"root": true,
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"extends": [
"@nuxtjs",
"plugin:prettier/recommended",
"plugin:nuxt/recommended"
],
"plugins": [],
// add your custom rules here
"rules": {
"arrow-parens": [1, "as-needed", { "requireForBlockBody": false }],
"comma-dangle": "off",
"no-console": "off",
"vue/require-default-prop": "off",
"vue/no-v-html": "off",
"unicorn/prefer-text-content": "off",
"no-new": "off",
"no-unused-vars": "warn",
"prefer-const": "warn",
"vue/script-setup-uses-vars": "off",
"import/no-named-as-default": "off",
"require-await": "warn",
"prettier/prettier": [
"off",
{
"endOfLine": "auto"
}
]
}
}