@k03mad/oxlint-config 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oxlintrc.json +5 -0
- package/package.json +1 -1
package/.oxlintrc.json
CHANGED
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
|
|
108
108
|
// OFF
|
|
109
109
|
|
|
110
|
+
"import/exports-last": "off",
|
|
110
111
|
"import/group-exports": "off",
|
|
111
112
|
"import/no-anonymous-default-export": "off",
|
|
112
113
|
"import/no-default-export": "off",
|
|
@@ -118,6 +119,7 @@
|
|
|
118
119
|
"import/prefer-default-export": "off",
|
|
119
120
|
|
|
120
121
|
"jsdoc/require-param-description": "off",
|
|
122
|
+
"jsdoc/require-property-description": "off",
|
|
121
123
|
"jsdoc/require-returns-description": "off",
|
|
122
124
|
"jsdoc/require-returns": "off",
|
|
123
125
|
|
|
@@ -128,6 +130,8 @@
|
|
|
128
130
|
"oxc/no-optional-chaining": "off",
|
|
129
131
|
"oxc/no-rest-spread-properties": "off",
|
|
130
132
|
|
|
133
|
+
"promise/avoid-new": "off",
|
|
134
|
+
|
|
131
135
|
"unicorn/filename-case": "off",
|
|
132
136
|
"unicorn/no-anonymous-default-export": "off",
|
|
133
137
|
"unicorn/no-array-for-each": "off",
|
|
@@ -142,6 +146,7 @@
|
|
|
142
146
|
"id-length": "off",
|
|
143
147
|
"init-declarations": "off",
|
|
144
148
|
"max-lines-per-function": "off",
|
|
149
|
+
"no-promise-executor-return": "off",
|
|
145
150
|
"max-lines": "off",
|
|
146
151
|
"max-params": "off",
|
|
147
152
|
"max-statements": "off",
|