-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
67 lines (67 loc) · 1.99 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
66
67
/** @type import('eslint').Linter.BaseConfig */
module.exports = {
root: true,
env: {
es2021: true,
node: true,
'jest/globals': true,
},
extends: ['airbnb-typescript/base', 'prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
},
plugins: ['@typescript-eslint', 'import', 'unused-imports'],
/**
* @note globalにjest pluginを効かすとsrc配下のアプリケーションコードにもjest設定が入ってしまうためtestsだけに効かす
* ※今後jestのルールを追加したい場合は以下に記載すること。
*/
overrides: [
{
files: ['./tests/**.test.ts'],
plugins: ['jest'],
extends: ['plugin:jest/all'],
rules: {},
},
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
project: './',
},
},
// jestのpluginにversionを追尾させる
jest: {
version: require('jest/package.json').version,
},
},
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'error',
'import/order': [
'warn',
{
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
'newlines-between': 'never',
pathGroupsExcludedImportTypes: ['builtin'],
alphabetize: { order: 'asc', caseInsensitive: true },
pathGroups: [
{ pattern: 'src/types/**', group: 'internal', position: 'before' },
{
pattern: 'src/repositories/**',
group: 'internal',
position: 'before',
},
],
},
],
// 主に import 側の名前が統一されない問題を避けるために default export は禁止する
'import/prefer-default-export': 'off',
// テストケースは日本語に統一するためoffにする
'jest/lowercase-name': ['off'],
},
};