Skip to content

Commit

Permalink
Merge pull request request#1162 from FredKSchott/eslintrc-update-remo…
Browse files Browse the repository at this point in the history
…ve-warning

Update eslintrc file to no longer allow past errors
  • Loading branch information
nylen committed Oct 14, 2014
2 parents 731f435 + 08a237d commit 2e553a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"semi": [2, "never"],
// Require strings to use single quotes
"quotes": [2, "single"],
// Require curly braces for all control statements (warning until all violations fixed)
"curly": 1,
// Disallow using variables and functions before they've been defined (warning until all violations fixed)
"no-use-before-define": 1,
// Require curly braces for all control statements
"curly": 2,
// Disallow using variables and functions before they've been defined
"no-use-before-define": 2,
// Allow any case for variable naming
"camelcase": 0,
// Disallow unused variables, except as function arguments
Expand Down

0 comments on commit 2e553a7

Please sign in to comment.