Skip to content

Commit

Permalink
disable all failing rules with todo
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Dec 19, 2023
1 parent fab48a8 commit 3beb377
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,19 @@ module.exports = {
extends: [
'plugin:@typescript-eslint/recommended',
],
rules: {
// TODO rules with a lot of errors to be fixed manually, fix in a separate PR
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/triple-slash-reference': 'off',

// TODO
'camelcase': 'off',
'no-alert': 'off',
'no-use-before-define': 'off',
'@internal/eqeqeq': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-unused-vars': 'off',
}
}],
};

0 comments on commit 3beb377

Please sign in to comment.