From 97fe53d647a4997a14be2c1f521d62bb9db07bbc Mon Sep 17 00:00:00 2001 From: Igor Gassmann Date: Wed, 20 Dec 2017 12:35:13 -0300 Subject: [PATCH] Warn if not using ES6 imports/exports --- .eslintrc.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 8eff1a76e..bc69f279c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -26,5 +26,9 @@ "__": true, "__n": true, "app": true + }, + "rules": { + "import/no-commonjs": 1, + "import/no-amd": 1 } } \ No newline at end of file