-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
65 lines (65 loc) · 1.69 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
62
63
64
65
module.exports = {
root: true,
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'module',
ecmaFeatures: { "legacyDecorators": true }
},
env: {
browser: true,
node: true
},
extends: [
'@nuxtjs',
'@nuxtjs/eslint-config-typescript',
'prettier',
'prettier/vue',
'prettier/@typescript-eslint',
'plugin:nuxt/recommended',
'plugin:vue/essentials',
'plugin:prettier/recommended',
],
// required to lint *.vue files
plugins: ["vue", "node", "@typescript-eslint"],
// add your custom rules here
rules: {
'nuxt/no-cjs-in-config': 0,
// 不要なカッコは消す
'no-extra-parens': 1,
// 無駄なスペースは削除
'no-multi-spaces': 2,
// 不要な改行は削除
'no-multiple-empty-lines': [2, { 'max': 1 }],
// 関数とカッコはあけない
'space-before-function-paren': [0, 'never'],
// true/falseを無駄に使うな
'no-unneeded-ternary': 2,
// varは禁止
'no-var': 2,
// コンソールはwarning
'no-console': 1,
// 配列のindexには空白入れるな(hogehoge[ x ])
'computed-property-spacing': 2,
// キー
'key-spacing': 2,
// キーワードの前後には適切なスペースを
'keyword-spacing': 2,
// 使ってない変数は警告
'no-unused-vars': 0,
'@typescript-eslint/no-unused-vars': 1,
'vue/html-indent': ['error', 4],
// prettier
'prettier/prettier': [
'error',
{
'printWidth': 150,
'tabWidth': 4,
'semi': false,
'singleQuote': true,
'arrowParens': 'always',
'jsxBracketSameLine': true
}
]
}
}