Skip to content

Commit

Permalink
feat: improve lint rules for stories and specs (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Onatolich authored Aug 5, 2020
1 parent b854cb5 commit dbc5af5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/scripts/lint/.eslintrc.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ module.exports = {
{
files: ['*.stories.*'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'react/no-multi-comp': 'off',
'react/jsx-no-bind': 'off',
'no-console': 'off',
},
},
{
Expand All @@ -108,6 +110,7 @@ module.exports = {
{
files: ['*.spec.*'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
},
},
Expand Down

0 comments on commit dbc5af5

Please sign in to comment.