-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc.js
32 lines (32 loc) · 921 Bytes
/
.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
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
project: "./tsconfig.json"
},
plugins: ["@typescript-eslint"],
extends: [
"airbnb-typescript",
"plugin:import/typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint"
],
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "error",
"import/order": [
"error",
{
alphabetize: { order: "asc", caseInsensitive: true },
groups: [["builtin", "external", "internal"]],
"newlines-between": "always"
}
],
"import/no-cycle": "off",
"import/prefer-default-export": "off",
"max-classes-per-file": "off",
"no-underscore-dangle": ["error", { allow: ["__typename"] }]
}
};