Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Temporarily disable new ESLint rules
Browse files Browse the repository at this point in the history
With the eslint upgrades come new eslint rules, but we don't
have the bandwidth to correct the 213 reported errors. Thus,
these new rules are disabled for the next few days, after
which we hope to find the time to return, reverse this commit,
and fix the lint issues.
  • Loading branch information
rajadain committed Mar 5, 2019
1 parent 46b80e8 commit 065a5f7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/app/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@
"required": {
"every": ["id"]
}
}]
}],
"implicit-arrow-linebreak": "off",
"object-curly-newline": "off",
"operator-linebreak": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/no-useless-path-segments": "off",
"jsx-a11y/label-has-associated-control": "off",
"react/destructuring-assignment": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-wrap-multilines": "off",
"react/prop-types": "off",
"react/sort-comp": "off"
}
}

0 comments on commit 065a5f7

Please sign in to comment.