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