diff options
author | Valentin Popov <info@valentineus.link> | 2017-07-29 03:39:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-07-29 03:39:18 +0300 |
commit | 4d7d17a98ae96cc2de7c398fa730512705741905 (patch) | |
tree | 4b0f9fd667433358560ab84e90de1b306985fd71 /.eslintrc.json | |
parent | a7e3aec6138e60e4ffc208d07670965b61dddab4 (diff) | |
download | iii-client-4d7d17a98ae96cc2de7c398fa730512705741905.tar.xz iii-client-4d7d17a98ae96cc2de7c398fa730512705741905.zip |
Release of version 2.0.0.
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 |