Skip to content

Commit

Permalink
Formatting according to eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-codes committed Dec 7, 2017
1 parent 7922155 commit 4699b36
Show file tree
Hide file tree
Showing 5 changed files with 741 additions and 25 deletions.
31 changes: 31 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"backtick"
],
"semi": [
"error",
"always"
]
},
"parserOptions": {
"ecmaVersion": 2017,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}
}
Loading

0 comments on commit 4699b36

Please sign in to comment.