aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-20 18:41:08 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-20 18:41:08 +0200
commita597c68201245e9e7b7d3d2ef62134588581ed3f (patch)
treeb8ecfc6b3ea2bb7efccea17e7439fb162ce5beb0 /.eslintrc
Initial versionHEADmain
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc19
1 files changed, 19 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..2b34ba8
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,19 @@
+{
+ "parserOptions": {
+ "ecmaVersion": 2021
+ },
+ "extends": [
+ "@hapi/eslint-config-hapi"
+ ],
+ "rules": {
+ "indent": [
+ 2,
+ 2
+ ],
+ "no-undef": 2,
+ "require-yield": 0
+ },
+ "ignorePatterns": [
+ "tap-snapshots"
+ ]
+}