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 e9dbceb commit 3aa4311Copy full SHA for 3aa4311
package.json
@@ -192,5 +192,28 @@
192
},
193
"prettier": {
194
"trailingComma": "all"
195
+ },
196
+ "xo": {
197
+ "prettier": true,
198
+ "plugins": [
199
+ "unicorn"
200
+ ],
201
+ "rules": {
202
+ "unicorn/filename-case": "off",
203
+ "camelcase": "off",
204
+ "unicorn/prevent-abbreviations": "off",
205
+ "no-constant-condition": "off",
206
+ "unicorn/prefer-math-trunc": "off",
207
+ "unicorn/no-new-array": "off",
208
+ "no-negated-condition": "off"
209
210
+ "overrides": [
211
+ {
212
+ "files": [
213
+ "doc/**"
214
215
+ "env": "browser"
216
+ }
217
+ ]
218
}
219
0 commit comments