Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #78 from librato/feature/linter
Browse files Browse the repository at this point in the history
Add eslint support
  • Loading branch information
bryanmikaelian committed Apr 10, 2017
2 parents eda371b + 627383f commit 9d172c8
Show file tree
Hide file tree
Showing 5 changed files with 822 additions and 398 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"one-var-declaration-per-line": "error",
"quotes": ["error", "single"],
"no-var": "off",
"max-len": "warn",
"guard-for-in": "warn",
"eqeqeq": "warn"
},
"extends": "google"
}
Loading

0 comments on commit 9d172c8

Please sign in to comment.