diff options
author | Valentin Popov <valentineus@gmail.com> | 2017-06-05 13:51:29 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2017-06-05 13:51:29 +0300 |
commit | a0780435720234c1b638fe9e8d7dd628dd824b30 (patch) | |
tree | 1d062aeef8c27ef2e2da25be5e08dd09b4b08a3f /.eslintrc.json | |
download | iii-for-vk-a0780435720234c1b638fe9e8d7dd628dd824b30.tar.xz iii-for-vk-a0780435720234c1b638fe9e8d7dd628dd824b30.zip |
Release of version 0.0.1.
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..b78236f --- /dev/null +++ b/.eslintrc.json @@ -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" + ] + } +}
\ No newline at end of file |