-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
29 lines (29 loc) · 801 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
{
"root": true,
"parserOptions": {
"ecmaVersion": "latest", // Using ESLint >= v8.x
"ecmaFeatures": {
"jsx": true // Using JSX
},
"sourceType": "module"
},
"extends": [
// Including "eslint-plugin-vue" and "eslint-config-standard" but override eslint-plugin-vue rules
// See: https://github.com/nuxt/eslint-config/blob/main/packages/eslint-config/index.js
// See: https://github.com/nuxt/eslint-config/blob/main/packages/eslint-config-typescript/index.js
"@nuxtjs/eslint-config-typescript"
],
"rules": {
/**********************/
/* Vue Rules */
/**********************/
"vue/max-attributes-per-line": ["error", {
"singleline": {
"max": 1
},
"multiline": {
"max": 1
}
}]
}
}