Skip to content

Commit

Permalink
Remove unneeded lint exceptions (#2129)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlane authored and Matt Kendall committed Feb 12, 2018
1 parent a2741f0 commit ef4354b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ module.exports = {
// See Issue #1111.
"camelcase": "off",
"eqeqeq": "off",
"no-control-regex": "off",
"no-return-assign": "off",
"no-throw-literal": "off",
"no-undef": "off",
"no-use-before-define": "off",
"no-useless-escape": "off",
"standard/no-callback-literal": "off",
}
};
7 changes: 0 additions & 7 deletions test/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,14 @@ module.exports = {
"no-global-assign": "off",
"no-path-concat": "off",
"no-redeclare": "off",
"no-new-object": "off",
"no-array-constructor": "off",
"node/no-deprecated-api": "off",
"no-cond-assign": "off",
"no-sequences": "off",
"no-eval": "off",
"no-new": "off",
"no-return-assign": "off",
"no-undef": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"no-useless-escape": "off",
"one-var": "off",
"standard/array-bracket-even-spacing": "off",
"standard/no-callback-literal": "off",
"standard/object-curly-even-spacing": "off"
}
};

0 comments on commit ef4354b

Please sign in to comment.