Skip to content

Commit

Permalink
Turn down errors that we're not following anyways
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham42 committed Jun 30, 2017
1 parent 04ad6cf commit 1fd06ac
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
"no-loop-func": 2,
"no-multi-str": 0,
"no-native-reassign": 2,
"no-new": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-octal": 2,
Expand All @@ -80,7 +79,7 @@
"no-sequences": 2,
"no-unused-expressions": 2,
"no-void": 0,
"no-warning-comments": 2,
"no-warning-comments": 1,
"no-with": 2,
"radix": 2,
"vars-on-top": 0,
Expand All @@ -92,13 +91,11 @@
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 2,
"no-shadow": 2,
"no-shadow-restricted-names": 2,
"no-undef": 2,
"no-undef-init": 2,
"no-undefined": 2,
"no-unused-vars": 2,
"no-use-before-define": 2,
// Stylistic Issues
"camelcase": 0,
"consistent-this": 0,
Expand All @@ -109,13 +106,11 @@
"no-array-constructor": 2,
"no-inline-comments": 0,
"no-lonely-if": 2,
"no-nested-ternary": 2,
"no-new-object": 2,
"no-ternary": 0,
"no-underscore-dangle": 0,
"one-var": 0,
"operator-assignment": [2, "always"],
"sort-vars": [2, {"ignoreCase": true}],
"wrap-regex": 0,
// Legacy
"max-depth": 0,
Expand Down

0 comments on commit 1fd06ac

Please sign in to comment.