diff options
author | Indrajith K L | 2017-11-02 13:31:13 +0530 |
---|---|---|
committer | Indrajith K L | 2017-11-02 13:31:13 +0530 |
commit | 70a7e6c3c2019346ea8ad5c52feb464efa0531e5 (patch) | |
tree | 4bf9315ab9979481c631775007ec3ff05d1ee61e /.eslintrc | |
download | es6-backbone-70a7e6c3c2019346ea8ad5c52feb464efa0531e5.tar.gz es6-backbone-70a7e6c3c2019346ea8ad5c52feb464efa0531e5.tar.bz2 es6-backbone-70a7e6c3c2019346ea8ad5c52feb464efa0531e5.zip |
Initial Commit ES6 barebone
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..4a9168b --- /dev/null +++ b/.eslintrc @@ -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" + } +} |