Skip to content

Commit

Permalink
chore: disable eslint for .html
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jun 1, 2022
1 parent d8c1636 commit cac3126
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ module.exports = {
'dist/**',
'examples/**',
'test262/**',
'*.html',
'ava*.config.js',
],
overrides: [
{
// disable type-aware linting in HTML
files: ['*.html'],
parserOptions: {
project: false,
},
},
],
};

0 comments on commit cac3126

Please sign in to comment.