-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.js
30 lines (28 loc) · 831 Bytes
/
vue.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
// eslint-config-whale-web
// Copyright (c) 2022-present NAVER Corp.
// MIT License
module.exports = {
extends: [
"./index.js",
"plugin:vue/recommended"
],
rules: {
// vue/strongly-recommended
"vue/component-name-in-template-casing": [1, "kebab-case"],
"vue/html-closing-bracket-newline": [1, { multiline: "never" }],
"vue/html-indent": [1, 4, { baseIndent: 0 }],
"vue/html-self-closing": [
1,
{
html: { normal: "never" },
svg: "never"
}
],
"vue/multiline-html-element-content-newline": 0,
"vue/singleline-html-element-content-newline": 0,
// vue/recommended
"vue/no-v-html": 0,
// vue/uncategorized
"vue/script-indent": [1, 4]
}
};