This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc.js
152 lines (152 loc) · 3.94 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
module.exports = {
extends: [
"eslint:recommended",
"plugin:cypress/recommended",
"plugin:import/errors",
"plugin:import/typescript",
"plugin:import/warnings",
"plugin:prettier/recommended",
"plugin:jsonc/recommended-with-jsonc",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@next/next/recommended",
"plugin:tailwindcss/recommended",
"prettier",
"turbo",
],
globals: {
browser: true,
process: true,
},
ignorePatterns: [
"Application/LightSafariExtension/Resources/**/*.js",
"**/dist/**/*.js",
],
overrides: [
{
files: ["*.js"],
rules: {
"no-undef": "off",
},
},
{
files: ["*.stories.tsx"],
rules: {
"@typescript-eslint/no-unused-vars": "off",
"import/no-anonymous-default-export": "off",
},
},
{
files: ["*.json", "*.json5", "*.jsonc"],
parser: "jsonc-eslint-parser",
},
{
files: ["*.spec.js", "*.spec.ts"],
rules: {},
},
],
parser: "@typescript-eslint/parser",
parserOptions: {
createDefaultProgram: true,
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2021,
sourceType: "module",
},
plugins: ["@typescript-eslint"],
root: true,
rules: {
"@next/next/no-server-import-in-page": "off",
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-unused-vars": "warn",
"arrow-body-style": ["error", "always"],
"import/newline-after-import": "error",
"import/no-anonymous-default-export": "error",
"import/no-named-as-default": "off",
"import/order": [
"error",
{
alphabetize: {
caseInsensitive: false,
order: "asc",
},
"newlines-between": "always-and-inside-groups",
pathGroups: [
{
group: "internal",
pattern: "@lightwallet/**",
position: "after",
},
],
},
],
"jsx-a11y/alt-text": [
"warn",
{
elements: ["img"],
img: ["Image"],
},
],
"jsx-a11y/anchor-is-valid": [
"error",
{
components: ["Link"],
specialLink: ["hrefLeft", "hrefRight"],
aspects: ["invalidHref", "preferButton"],
},
],
"jsx-a11y/href-no-hash": "off",
"no-console": ["error", { allow: ["warn", "error"] }],
"no-html-link-for-pages": "off",
"no-restricted-exports": ["error", { restrictedNamedExports: ["default"] }],
"no-unused-vars": "off",
"prefer-arrow-callback": ["error", { allowNamedFunctions: false }],
"func-style": ["error", "expression", { allowArrowFunctions: false }],
"react/jsx-sort-props": [
"error",
{
callbacksLast: true,
ignoreCase: true,
noSortAlphabetically: true,
reservedFirst: true,
shorthandFirst: true,
shorthandLast: true,
},
],
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"react/self-closing-comp": "error",
"tailwindcss/classnames-order": "error",
"tailwindcss/enforces-negative-arbitrary-values": "error",
"tailwindcss/enforces-shorthand": "error",
"tailwindcss/migration-from-tailwind-2": "error",
"tailwindcss/no-arbitrary-value": "off",
"tailwindcss/no-custom-classname": "error",
"tailwindcss/no-contradicting-classname": "error",
"turbo/no-undeclared-env-vars": "error",
},
settings: {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/resolver": {
typescript: {
project: ["Extension/*/tsconfig.json"],
},
},
react: {
version: "detect",
},
tailwindcss: {
callees: ["classnames", "clsx", "ctl"],
config: "tailwind.config.js",
cssFiles: ["**/*.css", "!**/node_modules"],
groupByResponsive: false,
prependCustom: true,
removeDuplicates: true,
whitelist: [],
},
},
};