diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-20 19:47:28 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-20 19:47:28 +0200 |
| commit | bfd26c004f1bbc07f049013ab4e8de970e14341f (patch) | |
| tree | 800cb1fc34dd696360588151ff39f505d548ee8c /.eslintrc | |
| parent | 3691a033c39f88886b8467c14f33245dc1193c8d (diff) | |
Recover from npm packagev1.1.0
Diffstat (limited to '.eslintrc')
| -rw-r--r-- | .eslintrc | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..bb7120d --- /dev/null +++ b/.eslintrc @@ -0,0 +1,41 @@ +{ + "rules": { + "indent": [ + 2, + 2 + ], + "quotes": [ + 2, + "single" + ], + "linebreak-style": [ + 2, + "unix" + ], + "semi": [ + 2, + "always" + ], + "no-trailing-spaces": [ + 2, + { + "skipBlankLines": false + } + ], + "eqeqeq": [ + 2, + "allow-null" + ], + "consistent-return": 2, + "curly": 2, + "dot-location": [2, "property"], + "guard-for-in": 2, + "no-extra-bind": 2 + }, + "env": { + "es6": true, + "node": true, + "browser": true + }, + "extends": "eslint:recommended" +} |