Skip to content

Commit

Permalink
chore(.eslintrc.js): disable @typescript-eslint/ban-ts-ignore and imp…
Browse files Browse the repository at this point in the history
…ort/prefer-default-export rules
  • Loading branch information
smashercosmo committed Nov 19, 2019
1 parent ab62cb1 commit db8d99e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ module.exports = {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",

// Import rules
"import/prefer-default-export": "off",

// General rules
"func-style": ["error", "declaration"],
"prefer-spread": "off",
"prefer-destructuring": "off",
"prefer-object-spread": "off",

// Typescript
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/explicit-function-return-type": "off"
},
"settings": {
Expand Down

0 comments on commit db8d99e

Please sign in to comment.