8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db859fe commit fa51dd8Copy full SHA for fa51dd8
package.json
@@ -190,5 +190,28 @@
190
},
191
"prettier": {
192
"trailingComma": "all"
193
+ },
194
+ "xo": {
195
+ "prettier": true,
196
+ "plugins": [
197
+ "unicorn"
198
+ ],
199
+ "rules": {
200
+ "unicorn/filename-case": "off",
201
+ "camelcase": "off",
202
+ "unicorn/prevent-abbreviations": "off",
203
+ "no-constant-condition": "off",
204
+ "unicorn/prefer-math-trunc": "off",
205
+ "unicorn/no-new-array": "off",
206
+ "no-negated-condition": "off"
207
208
+ "overrides": [
209
+ {
210
+ "files": [
211
+ "doc/**"
212
213
+ "env": "browser"
214
+ }
215
+ ]
216
}
217
0 commit comments