-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.yml
50 lines (50 loc) · 1.77 KB
/
.eslintrc.yml
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
env:
es6: true
es2020: true
extends:
# TODO: この辺のベストプラクティスはどうなのでしょう。。
- next
- eslint:recommended
- plugin:react/recommended
- plugin:react-hooks/recommended
- plugin:import/recommended
- plugin:import/typescript
- plugin:@typescript-eslint/recommended
- airbnb-typescript
- plugin:prettier/recommended
overrides:
- files:
- '*.js'
rules:
# JavaScript ファイルは主に設定ファイルなど、トランスパイル範囲外の
# 用途が多く、`require()` 構文は認める。
'@typescript-eslint/no-var-requires': 'off'
parser: '@typescript-eslint/parser'
parserOptions:
ecmaVersion: 2020
project: ./tsconfig.json
root: true
rules:
# devDependencies への依存は設定系のスクリプトのみ使用できるようにする。
import/no-extraneous-dependencies:
- error
- devDependencies:
- '**/*.config.?s'
# import 部分が絶対カオスになるので、整理のために。
import/order: warn
# React 17 以降は、`React` のインポートは不要。
# https://ja.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html#eslint
react/jsx-uses-react: 'off'
# TypeScript プロジェクトかつライブラリでない場合、
# 動的な型制約要らない気がします。。
react/prop-types: 'off'
# React 17 以降は、`React` のインポートは不要。
# https://ja.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html#eslint
react/react-in-jsx-scope: 'off'
# import 部分が絶対カオスになるので、整理のために。
# import/order と競合する場合、import/order を優先する。
sort-imports: warn
settings:
import/resolver:
typescript:
alwaysTryTypes: true