diff options
| author | Rubén Beltrán del Río <ben@nsovocal.com> | 2017-02-18 17:55:13 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-18 17:55:13 -0600 |
| commit | 5e981bca19ace2a7704f267175b6aa368e63bda0 (patch) | |
| tree | d38e6cbd1762837d3fae81b5029a9c0b48fa08b4 /.eslintrc | |
| parent | dc10b1de1a73effd6d0ab5744709913ef5cbe5b3 (diff) | |
Initial Setup (#1)
* Add git ignore
* Add eslint config
* Add dummy project files
* Add jsdoc config
* Add docker files
* Add changelog, contributing and readme
* Add travis files
* Add Paw helper
* Add travis test docker compose file
* Name the ci service appropriately
Diffstat (limited to '.eslintrc')
| -rw-r--r-- | .eslintrc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..f91f592 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,11 @@ +{ + "extends": "eslint-config-hapi", + "rules": { + "indent": [ + 2, + 2 + ], + "no-undef": 2, + "require-yield": 0 + } +} |