aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2017-08-27 17:18:27 -0500
committerBen Beltran <ben@nsovocal.com>2017-08-27 17:18:27 -0500
commit753ee4ebf0b838d45f31a40834918ef87ae81741 (patch)
tree3ed79350d4f742a59981274141744ddf998e3e21 /.eslintrc
parenta6b9035958a0e125d291ef1696c94d6a53a3c918 (diff)
Add basic config
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc13
1 files changed, 13 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..dc5f460
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,13 @@
+{
+ "extends": "eslint-config-hapi",
+ "rules": {
+ "indent": [
+ 2,
+ 2
+ ],
+ "no-undef": 2
+ },
+ "parserOptions": {
+ "ecmaVersion": 8
+ }
+}