Skip to content

Commit

Permalink
Merge pull request eweitz#165 from eweitz/git-hooks
Browse files Browse the repository at this point in the history
Ensure style and tests with Git hooks
  • Loading branch information
eweitz authored Aug 17, 2019
2 parents 60f1f04 + ac8813b commit 3756271
Show file tree
Hide file tree
Showing 60 changed files with 680 additions and 460 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
module.exports = {
"extends": "google",
"rules": {
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"curly": ["error", "multi-line"],
"no-undef": "off",
"require-jsdoc": "off",
"valid-jsdoc": "off",
"one-var": "off",
"guard-for-in": "off",
"no-alert": "off",
"no-loop-func": "off",
"no-negated-condition": "off",
"no-inner-declaration": "off",
Expand All @@ -14,6 +17,7 @@ module.exports = {
"no-inner-declarations": "off",
"no-else-return": "off",
"no-var": "off",
"padded-blocks": "off"
"padded-blocks": "off",
"radix": "off"
}
}
Loading

0 comments on commit 3756271

Please sign in to comment.