-
Notifications
You must be signed in to change notification settings - Fork 58
/
.eslintrc.js
61 lines (61 loc) · 1.59 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,
},
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 2016,
parser: 'babel-eslint',
},
extends: [
'@nuxtjs',
'plugin:nuxt/recommended',
'plugin:vue/recommended',
'prettier',
],
plugins: ['html', 'vue'],
// add your custom rules here
rules: {
// タグの最後で改行しないで
'vue/html-closing-bracket-newline': [2, { multiline: 'never' }],
// 不要なカッコは消す
'no-extra-parens': 1,
// 無駄なスペースは削除
'no-multi-spaces': 2,
// 不要な空白行は削除。2行開けてたらエラー
'no-multiple-empty-lines': [2, { max: 1 }],
// 関数とカッコはあけない(function hoge() {/** */})
'func-call-spacing': [2, 'never'],
// true/falseを無駄に使うな
'no-unneeded-ternary': 2,
// varは禁止
'no-var': 2,
// かっこの中はスペースなし!違和感
'space-in-parens': [2, 'never'],
// コンソールは許可
'no-console': 0,
// カンマの前後にスペース入れる?
'comma-spacing': 2,
// 配列のindexには空白入れるな(hogehoge[ x ])
'computed-property-spacing': 2,
// キー
'key-spacing': 2,
// キーワードの前後には適切なスペースを
'keyword-spacing': 2,
'camelcase': 0,
},
overrides: [
{
files: [
'layouts/*.vue',
'pages/*.vue'
],
rules: {
// 1単語のコンポーネント名を許容
'vue/multi-word-component-names': 'off'
}
}
]
}