Skip to content

Commit

Permalink
Staato
Browse files Browse the repository at this point in the history
  • Loading branch information
kaimoe committed Jan 4, 2019
0 parents commit 18587e5
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab",
{ "SwitchCase": 1 }
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"no-console": [
0
]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
Empty file added index.js
Empty file.

0 comments on commit 18587e5

Please sign in to comment.