0
mirror of https://github.com/valentineus/simple-container.git synced 2025-07-05 09:10:26 +03:00

Initial commit

This commit is contained in:
2017-10-04 19:59:46 +04:00
commit b36916c7f5
10 changed files with 295 additions and 0 deletions

28
.eslintrc.json Normal file
View File

@ -0,0 +1,28 @@
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}