openreachtech / eslint-rules-default

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

🐛 Fix `no-warning-comments` rule #237

Closed StewEucen closed 5 months ago

StewEucen commented 5 months ago

Overview

Note

{
      'no-warning-comments': [
        'error',
        {
          terms: [
            'todo',
            'fixme',
            'xxx',
          ],
          location: 'start',
          decoration: undefined, // When disable `decoration` field, give undefined instead of empty array
        },
      ],
}