We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9287522 commit 502c19fCopy full SHA for 502c19f
package.json
@@ -179,5 +179,28 @@
179
},
180
"prettier": {
181
"trailingComma": "all"
182
+ },
183
+ "xo": {
184
+ "prettier": true,
185
+ "plugins": [
186
+ "unicorn"
187
+ ],
188
+ "rules": {
189
+ "unicorn/filename-case": "off",
190
+ "camelcase": "off",
191
+ "unicorn/prevent-abbreviations": "off",
192
+ "no-constant-condition": "off",
193
+ "unicorn/prefer-math-trunc": "off",
194
+ "unicorn/no-new-array": "off",
195
+ "no-negated-condition": "off"
196
197
+ "overrides": [
198
+ {
199
+ "files": [
200
+ "doc/**"
201
202
+ "env": "browser"
203
+ }
204
+ ]
205
}
206
0 commit comments