You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'ember/routes-segments-snake-case': 'off',// We should leave this off permanently
229
204
'ember/use-brace-expansion': 'off',// has bugs and is annoying + only applies to computeds
230
205
@@ -243,68 +218,6 @@ module.exports = {
243
218
'ember/require-tagless-components': 'error',
244
219
'ember/no-classic-components': 'error',
245
220
'ember/no-side-effects': 'error',
246
-
247
-
// unicorn
248
-
'unicorn/prefer-module': 'off',
249
-
'unicorn/no-array-for-each': 'off',// this might be nice someday? better if it would do regular for loops for arrays
250
-
'unicorn/number-literal-case': 'off',// conflicts with prettier
251
-
'unicorn/no-nested-ternary': 'off',// conflicts with prettier
252
-
'unicorn/no-null': 'off',// too WAT
253
-
'unicorn/consistent-destructuring': 'off',// nice in some ways but heavy handed
254
-
'unicorn/prefer-spread': 'off',// possibly nice if we had native arrays
255
-
'unicorn/no-for-loop': 'off',// if for...of was good maybe we'd use this
256
-
'unicorn/prefer-add-event-listener': 'error',
257
-
'unicorn/better-regex': 'off',// would be awesome but has bugs https://github.com/sindresorhus/eslint-plugin-unicorn/issues?q=is%3Aissue+is%3Aopen+better-regex
258
-
259
-
'unicorn/prefer-includes': 'error',
260
-
'unicorn/prefer-default-parameters': 'error',
261
-
'unicorn/prefer-number-properties': 'error',// note Number.isNaN and Number.isFinite usage differs from global
262
-
'unicorn/numeric-separators-style': 'error',
263
-
'unicorn/prefer-optional-catch-binding': 'error',
264
-
'unicorn/catch-error-name': 'error',
265
-
'unicorn/prefer-ternary': 'error',
266
-
'unicorn/no-lonely-if': 'error',
267
-
'unicorn/prefer-regexp-test': 'error',
268
-
'unicorn/prefer-array-find': 'error',
269
-
'unicorn/prefer-array-some': 'error',
270
-
'unicorn/prefer-string-replace-all': 'error',
271
-
'unicorn/explicit-length-check': 'error',
272
-
'unicorn/no-unsafe-regex': 'error',
273
-
274
-
// to consider activating
275
-
'unicorn/prefer-negative-index': 'off',
276
-
'unicorn/prefer-dom-node-append': 'off',
277
-
'unicorn/prefer-dom-node-remove': 'off',
278
-
'unicorn/prefer-query-selector': 'off',
279
-
'unicorn/prefer-switch': 'off',
280
-
'unicorn/prefer-string-slice': 'off',
281
-
'unicorn/no-array-push-push': 'off',
282
-
'unicorn/no-zero-fractions': 'off',
283
-
'unicorn/consistent-function-scoping': 'off',
284
-
'unicorn/no-array-reduce': 'off',
285
-
'unicorn/new-for-builtins': 'off',
286
-
'unicorn/escape-case': 'off',
287
-
'unicorn/no-this-assignment': 'off',
288
-
'unicorn/prefer-set-has': 'off',
289
-
'unicorn/prefer-export-from': 'off',
290
-
'unicorn/prefer-code-point': 'off',
291
-
'unicorn/require-array-join-separator': 'off',
292
-
'unicorn/error-message': 'off',
293
-
'unicorn/no-array-callback-reference': 'off',// we may never want this
0 commit comments