-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
34 lines (32 loc) · 1.09 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
module.exports = {
root: true,
ignorePatterns: [".eslintrc.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: `${__dirname}/tsconfig.json`,
},
plugins: ["@typescript-eslint", "import"],
extends: [
"airbnb-base",
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:import/errors",
"plugin:import/warnings",
"prettier",
],
rules: {
"import/order": [
"error",
{
alphabetize: { order: "asc" }, // importは同じレイヤーならアルファベット順に。
},
],
curly: ["error", "all"], // 副行括弧の省略禁止。
"import/prefer-default-export": "off", // named importの方が分かり易い。
"max-classes-per-file": "off", // 小さなクラスを複数書きたいことがある。
"no-param-reassign": "off", // DOMを書き換えることが多い性質上無効化することが多いので仕方なく緩めます。
},
};