openreachtech / eslint-rules-default

A showcasing package all the rules of ESLint.
MIT License
0 stars 0 forks source link

🐛 Fix `no-console` rule #235

Closed StewEucen closed 5 months ago

StewEucen commented 5 months ago

Overview

Note

{
  rules: {
    'no-console': [
      'error',
      {
        allow: undefined, // When disable `allow` field, give undefined instead of empty array
        // [
        //   'assert',
        //   'clear',
        //   'Console',
        //   'count',
        //   'countReset',
        //   'debug',
        //   'dir',
        //   'dirxml',
        //   'error',
        //   'group',
        //   'groupCollapsed',
        //   'groupEnd',
        //   'info',
        //   'log',
        //   'table',
        //   'time',
        //   'timeEnd',
        //   'timeLog',
        //   'trace',
        //   'warn',
        // ],
      },
    ],
  },
}