aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-05-29 07:02:09 +0300
committerValentin Popov <info@valentineus.link>2017-05-29 07:02:09 +0300
commitc43c75e3d1c4c7a9b2fb71c7cf7e1086ea8fddf4 (patch)
tree0b1f3313312bdb00ef48f2a4fbfd43939f5140b3 /.eslintrc.js
parentcb354fc09830944839ae4221a0bbe485d2cb64dd (diff)
downloadiii-client-c43c75e3d1c4c7a9b2fb71c7cf7e1086ea8fddf4.tar.xz
iii-client-c43c75e3d1c4c7a9b2fb71c7cf7e1086ea8fddf4.zip
Release of version 0.0.3.
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..ce27f79
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,25 @@
+module.exports = {
+ "env": {
+ "es6": true,
+ "node": true
+ },
+ "extends": "eslint:recommended",
+ "rules": {
+ "indent": [
+ "error",
+ 4
+ ],
+ "linebreak-style": [
+ "error",
+ "unix"
+ ],
+ "quotes": [
+ "error",
+ "single"
+ ],
+ "semi": [
+ "error",
+ "always"
+ ]
+ }
+}; \ No newline at end of file