Skip to content

Commit

Permalink
🚨 Remove unused rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Levacher committed Jun 20, 2018
1 parent 852ed9a commit 00b8f1d
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "airbnb",
"extends": "airbnb-base",
"plugins": [
"import"
],
Expand All @@ -11,24 +11,14 @@
"exports": "always",
"functions": "ignore"
}],
"consistent-return": "error",
"func-names": ["error", "never"],
"global-require": "warn",
"func-names": "off",
"guard-for-in": "off",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true
}],
"object-curly-newline": ["error", { "consistent": true }],
"indent": ["error", 4, { "MemberExpression": 0 }],
"jsx-a11y/href-no-hash": "off",
"newline-after-import": "off",
"no-param-reassign": ["error", {
"props": false
}],
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"strict": "off"
"no-underscore-dangle": "off"
}
}

0 comments on commit 00b8f1d

Please sign in to comment.