Skip to content

Commit

Permalink
Merge pull request YahooArchive#49 from SOASTA/eslint-rules
Browse files Browse the repository at this point in the history
Added ESLint rules: brace-style and space-after-keywords

Reviewed By: @cvazac, @andreas-marschke
  • Loading branch information
nicjansma committed Apr 27, 2015
2 parents f97eb55 + c0175c9 commit 3d6378d
Show file tree
Hide file tree
Showing 22 changed files with 560 additions and 558 deletions.
5 changes: 4 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
"dot-notation":[2, {"allowKeywords": false}],
"space-unary-ops":0,
"key-spacing":0,
"no-empty":2
"no-empty":2,
"brace-style": [1, "stroustrup", { "allowSingleLine": true }],
"space-after-keywords": [2, "always"],
"no-space-before-semi": 0
}
}
Loading

0 comments on commit 3d6378d

Please sign in to comment.