Skip to content

Commit

Permalink
disable explicit return type for now
Browse files Browse the repository at this point in the history
  • Loading branch information
matthijsgroen committed May 23, 2024
1 parent 13026b2 commit 25ead5b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@
"prettier"
],
"rules": {
"react/jsx-props-no-spreading": 0,
"import/no-cycle": 0,
"react/destructuring-assignment": 0,
"import/prefer-default-export": 0,
"react/jsx-props-no-spreading": "off",
"import/no-cycle": "off",
"react/destructuring-assignment": "off",
"import/prefer-default-export": "off",
"max-len": ["error", { "code": 120 }],
"react/button-has-type": 0,
"react/button-has-type": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": 1
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "warn"
},
"ignorePatterns": ["jest.config.js", ".storybook/*", "src/**/*.stories.tsx"],
"settings": {
Expand Down

0 comments on commit 25ead5b

Please sign in to comment.