diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-03-09 13:38:33 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-03-09 13:38:33 -0500 |
| commit | 6b3e4b4fb52e477f9f3c147127c2fd638baffd8a (patch) | |
| tree | a2998b42917dce2e2d2be767349695ff84650edf /.eslintrc | |
| parent | 0ac5b46bdc5086ded3a93d3a7d68ca5ff77cddeb (diff) | |
| parent | 5f26f629b590a26ca90f6be48b107d875343358c (diff) | |
Merge branch 'release/3.0.0'3.0.0
Diffstat (limited to '.eslintrc')
| -rw-r--r-- | .eslintrc | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -1,9 +1,21 @@ { - "extends": "eslint-config-hapi", + "parserOptions": { + "ecmaVersion": 2019, + "sourceType": "module" + }, + "env": { + "es6": true, + "browser": true + }, + "extends": [ + "@hapi/eslint-config-hapi" + ], "rules": { "indent": [ - "error", + 2, 2 - ] + ], + "no-undef": 2, + "require-yield": 0 } } |