Initial Commit ES6 barebone

This commit is contained in:
Indrajith K L
2017-11-02 13:31:13 +05:30
commit 70a7e6c3c2
13 changed files with 184 additions and 0 deletions

31
.eslintrc Normal file
View File

@@ -0,0 +1,31 @@
{
"rules": {
"indent": [
2,
4
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"env": {
"es6": true,
"browser": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"modules": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}