aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-10-04 18:59:46 +0300
committerValentin Popov <info@valentineus.link>2017-10-04 18:59:46 +0300
commitb36916c7f540d55ae28962503d4d1135e3ce3092 (patch)
tree381bf9226ee3311404ba2c55e0ca9bcbabd4154c /.eslintrc.json
downloadsimple-container-b36916c7f540d55ae28962503d4d1135e3ce3092.tar.xz
simple-container-b36916c7f540d55ae28962503d4d1135e3ce3092.zip
Initial commit
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json28
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