-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
51 lines (51 loc) · 1.38 KB
/
.eslintrc
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
{
"globals": {
"jest": true
},
"ignorePatterns": ["src/vendors/integrations/api.validation/**/generated.js"],
"parser": "@typescript-eslint/parser",
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"plugin:jest-formatting/recommended"
],
"plugins": ["unused-imports", "@typescript-eslint", "jest-formatting"],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/ban-ts-comment": [
"error",
{ "ts-ignore": "allow-with-description" }
],
"import/order": [
"error",
{
"alphabetize": { "order": "asc" },
"groups": [
"external",
"builtin",
"sibling",
"parent",
"object",
"index",
"internal",
"type"
],
"newlines-between": "never",
"pathGroups": [
{
"pattern": "@app/**",
"group": "external",
"position": "after"
}
],
"pathGroupsExcludedImportTypes": ["builtin"]
}
],
"jest-formatting/padding-around-expect-groups": "off",
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error"
}
}