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 7a6c004 commit 90c3d0dCopy full SHA for 90c3d0d
package.json
@@ -191,5 +191,29 @@
191
},
192
"prettier": {
193
"trailingComma": "all"
194
+ },
195
+ "xo": {
196
+ "prettier": true,
197
+ "plugins": [
198
+ "unicorn"
199
+ ],
200
+ "rules": {
201
+ "unicorn/filename-case": "off",
202
+ "camelcase": "off",
203
+ "unicorn/prevent-abbreviations": "off",
204
+ "no-constant-condition": "off",
205
+ "unicorn/prefer-node-protocol": "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