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 1f4c56b commit 0145fa1Copy full SHA for 0145fa1
package.json
@@ -183,5 +183,28 @@
183
},
184
"prettier": {
185
"trailingComma": "all"
186
+ },
187
+ "xo": {
188
+ "prettier": true,
189
+ "plugins": [
190
+ "unicorn"
191
+ ],
192
+ "rules": {
193
+ "unicorn/filename-case": "off",
194
+ "camelcase": "off",
195
+ "unicorn/prevent-abbreviations": "off",
196
+ "no-constant-condition": "off",
197
+ "unicorn/prefer-math-trunc": "off",
198
+ "unicorn/no-new-array": "off",
199
+ "no-negated-condition": "off"
200
201
+ "overrides": [
202
+ {
203
+ "files": [
204
+ "doc/**"
205
206
+ "env": "browser"
207
+ }
208
+ ]
209
}
210
0 commit comments