From 0c54e12445f4183d2b4e7d27b5fc33f5f2032a0f Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Wed, 12 Oct 2016 19:57:19 +0200 Subject: [PATCH] Use eslint and be compliant. (mostly) --- .eslintrc.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..1308deb --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,20 @@ +{ + "extends": "google", + "installedESLint": true, + "rules": { + "indent": ["error", 4] + }, + "plugins": [ + "angular", + "html", + "jquery", + "security", + "this" + ], + "globals": { + "angular": false, + "moment": false, + "Highcharts": false, + "$": false + } +}