-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.oxlintrc.json.bak
More file actions
129 lines (129 loc) · 3.73 KB
/
.oxlintrc.json.bak
File metadata and controls
129 lines (129 loc) · 3.73 KB
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
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [],
"categories": {
"correctness": "off"
},
"env": {
"builtin": true
},
"ignorePatterns": [
".next/**",
"out/**",
"build/**",
"next-env.d.ts"
],
"overrides": [
{
"files": [
"**/*.{js,jsx,mjs,ts,tsx,mts,cts}"
],
"rules": {
"react/display-name": "error",
"react/jsx-key": "error",
"react/jsx-no-comment-textnodes": "error",
"react/jsx-no-duplicate-props": "error",
"react/jsx-no-target-blank": "off",
"react/jsx-no-undef": "error",
"react/no-children-prop": "error",
"react/no-danger-with-children": "error",
"react/no-direct-mutation-state": "error",
"react/no-find-dom-node": "error",
"react/no-is-mounted": "error",
"react/no-render-return-value": "error",
"react/no-string-refs": "error",
"react/no-unescaped-entities": "error",
"react/no-unknown-property": "off",
"react/no-unsafe": "off",
"react/react-in-jsx-scope": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"@next/next/google-font-display": "warn",
"@next/next/google-font-preconnect": "warn",
"@next/next/next-script-for-ga": "warn",
"@next/next/no-async-client-component": "warn",
"@next/next/no-before-interactive-script-outside-document": "warn",
"@next/next/no-css-tags": "warn",
"@next/next/no-head-element": "warn",
"@next/next/no-html-link-for-pages": "warn",
"@next/next/no-img-element": "warn",
"@next/next/no-page-custom-font": "warn",
"@next/next/no-styled-jsx-in-document": "warn",
"@next/next/no-sync-scripts": "warn",
"@next/next/no-title-in-document-head": "warn",
"@next/next/no-typos": "warn",
"@next/next/no-unwanted-polyfillio": "warn",
"@next/next/inline-script-id": "error",
"@next/next/no-assign-module-variable": "error",
"@next/next/no-document-import-in-page": "error",
"@next/next/no-duplicate-head": "error",
"@next/next/no-head-import-in-document": "error",
"@next/next/no-script-component-in-head": "error",
"import/no-anonymous-default-export": "warn",
"jsx-a11y/alt-text": [
"warn",
{
"elements": [
"img"
],
"img": [
"Image"
]
}
],
"jsx-a11y/aria-props": "warn",
"jsx-a11y/aria-proptypes": "warn",
"jsx-a11y/aria-unsupported-elements": "warn",
"jsx-a11y/role-has-required-aria-props": "warn",
"jsx-a11y/role-supports-aria-props": "warn"
},
"globals": {
"AudioWorkletGlobalScope": "readonly",
"AudioWorkletProcessor": "readonly",
"currentFrame": "readonly",
"currentTime": "readonly",
"registerProcessor": "readonly",
"sampleRate": "readonly",
"WorkletGlobalScope": "readonly"
},
"plugins": [
"react",
"nextjs",
"import",
"jsx-a11y"
],
"env": {
"browser": true,
"node": true
}
},
{
"files": [
"**/*.{md,mdx}"
],
"rules": {
"no-unused-expressions": "error",
"react/react-in-jsx-scope": "off"
},
"globals": {
"React": "readonly"
},
"plugins": [
"react"
]
},
{
"files": [
"**/*.{md,mdx}/**"
],
"rules": {
"no-unused-expressions": "off",
"no-unused-vars": "off",
"unicode-bom": "off"
},
"plugins": [
"typescript"
]
}
]
}