-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
103 lines (103 loc) · 2.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
env: {
node: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:testing-library/react",
"plugin:@next/next/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
],
parserOptions: {
sourceType: "module",
},
settings: {
react: {
version: "17",
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/resolver": {
typescript: {
project: [
"./tsconfig.json",
"./web/tsconfig.json",
"./functional-tests/tsconfig.json",
],
},
},
},
rules: {
// We use noImplicitAny so don't need function return types
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-module-boundary-types": [
"error",
{ allowedNames: ["getServerSideProps"] },
],
// Allow unused variables that start with _ see https://stackoverflow.com/a/64067915/486434
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
"react/react-in-jsx-scope": "off",
"react/display-name": "off",
"react/prop-types": "off",
"@next/next/no-html-link-for-pages": ["warn", "./web/src/pages"],
"import/first": "error",
"import/order": [
"error",
{
"newlines-between": "always",
groups: [
"builtin",
"external",
"internal",
"unknown",
"parent",
"sibling",
"index",
"object",
"type",
],
alphabetize: { order: "asc", caseInsensitive: true },
pathGroupsExcludedImportTypes: ["builtin"],
warnOnUnassignedImports: true,
pathGroups: [
{
pattern: "@nice-digital/**",
group: "external",
position: "after",
},
{
pattern: "@/**",
group: "internal",
position: "before",
},
],
},
],
"import/newline-after-import": "error",
"import/no-unresolved": "error",
},
overrides: [
{
files: ["*.js"],
rules: {
"@typescript-eslint/no-var-requires": "off",
},
},
{
files: ["*.d.ts"],
rules: {
"import/order": "off",
},
},
],
};