forked from codeforjapan/mapprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
49 lines (49 loc) · 1.37 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
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,
},
}