Skip to content

Commit

Permalink
Merge pull request #67 from dabapps/disable-annoying-rules
Browse files Browse the repository at this point in the history
Disable annoying rules
  • Loading branch information
JakeSidSmith authored Aug 14, 2020
2 parents fd0ea31 + 5913ac7 commit bef863c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
13 changes: 4 additions & 9 deletions base/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,7 @@

"no-var": 2,
"no-unused-expressions": 2,
"camelcase": [
2,
{
"properties": "always",
"allow": ["^UNSAFE_"]
}
],
"camelcase": 0,
"import/order": [
2,
{
Expand Down Expand Up @@ -82,7 +76,8 @@
"import/no-unused-modules": [
2,
{
"unusedExports": true
"unusedExports": false,
"missingExports": true
}
],
"import/no-deprecated": 2,
Expand All @@ -99,7 +94,7 @@
"tsx": "never"
}
],
"import/prefer-default-export": 2,
"import/prefer-default-export": 0,
"import/no-anonymous-default-export": [
2,
{
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-dabapps",
"version": "6.0.4",
"version": "6.1.0",
"description": "DabApps ESLint Configuration",
"main": ".eslintrc.json",
"scripts": {
Expand Down

0 comments on commit bef863c

Please sign in to comment.