summary refs log tree commit diff stats
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorAlan Pearce2017-06-29 00:42:42 +0200
committerAlan Pearce2017-06-29 00:42:42 +0200
commit36f5609c814a361214a755ebe57633f75bc4920a (patch)
tree85c4e329622d712e3bff60b980b681ff75e0b0ae /.eslintrc.json
parent18eeadd14e4ab99f75167f1c97776b57e05bcb74 (diff)
downloadhomestead-36f5609c814a361214a755ebe57633f75bc4920a.tar.lz
homestead-36f5609c814a361214a755ebe57633f75bc4920a.tar.zst
homestead-36f5609c814a361214a755ebe57633f75bc4920a.zip
chore: Setup eslint directly for better editor integration
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..710250d
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,16 @@
+{
+  "env": {
+    "node": true
+  },
+  "extends": [
+    "standard",
+    "prettier",
+    "plugin:ava/recommended"
+  ],
+  "plugins": [
+    "prettier",
+    "standard",
+    "ava"
+  ],
+  "root": true
+}