Skip to content

Commit

Permalink
Added eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCodes committed Jul 14, 2018
1 parent 9baee1b commit e65063f
Show file tree
Hide file tree
Showing 3 changed files with 951 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
Loading

0 comments on commit e65063f

Please sign in to comment.