@wistia/oxlint-config 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rules/base.mjs +1 -1
package/package.json
CHANGED
package/rules/base.mjs
CHANGED
|
@@ -309,7 +309,7 @@ export const baseRules = {
|
|
|
309
309
|
|
|
310
310
|
// Disallow the use of console
|
|
311
311
|
// https://eslint.org/docs/rules/no-console
|
|
312
|
-
'eslint/no-console': 'error',
|
|
312
|
+
'eslint/no-console': ['error', { allow: ['log', 'warn', 'error'] }],
|
|
313
313
|
|
|
314
314
|
// Disallow continue statements
|
|
315
315
|
// https://eslint.org/docs/rules/no-continue
|