Skip to content

Commit

Permalink
chore(deps): add ESLint v8 support for React package (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov authored Nov 22, 2023
1 parent 74654ef commit a32593f
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 1,016 deletions.
9 changes: 7 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,21 @@ module.exports = {
},
},
{
files: ['*'],
files: ['*.ts'],
rules: {
'@typescript-eslint/quotes': ['error', 'single'],
'@taiga-ui/experience/strict-tui-doc-example': 'off',
'@taiga-ui/experience/prefer-inject-decorator': 'off',
'@taiga-ui/experience/no-typeof': 'off',
'@typescript-eslint/consistent-type-assertions': 'off',
'no-irregular-whitespace': 'off',
'no-restricted-syntax': 'off', // TODO
},
},
{
files: ['*'],
rules: {
'no-irregular-whitespace': 'off',
},
},
],
};
Loading

0 comments on commit a32593f

Please sign in to comment.