@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rules/base.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/oxlint-config",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Wistia's Oxlint configurations",
5
5
  "packageManager": "yarn@4.14.1",
6
6
  "type": "module",
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