Skip to content

Commit

Permalink
Wrap indent-key to parentheses in .eslintrc
Browse files Browse the repository at this point in the history
The key `indent` was missing parentheses in `.eslintrc`, rendering the file invalid JSON. 

This PR fixes that simple error.
  • Loading branch information
petetnt committed Jan 5, 2016
1 parent 239c937 commit 6730a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"new-parens": 2,
"no-new-object": 2,
"no-invalid-this": 0,
indent: [0, 4],
"indent": [0, 4],

"valid-jsdoc": 0,
"valid-typeof": 2,
Expand Down

0 comments on commit 6730a31

Please sign in to comment.