From a70fff881d79fb46e3b2bd5870dbdc11c01355b9 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 6 Jul 2015 15:50:39 +0930 Subject: [PATCH] Allow some more globals in eslint --- framework/core/.eslintrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/framework/core/.eslintrc b/framework/core/.eslintrc index 76fbfb710..8d44118bc 100644 --- a/framework/core/.eslintrc +++ b/framework/core/.eslintrc @@ -1,7 +1,7 @@ { "parser": "babel-eslint", // https://github.com/babel/babel-eslint "env": { // http://eslint.org/docs/user-guide/configuring.html#specifying-environments - "browser": true // browser global variables + "browser": true // browser global variables }, "ecmaFeatures": { "arrowFunctions": true, @@ -22,7 +22,10 @@ "jsx": true }, "globals": { - "m": true + "m": true, + "app": true, + "$": true, + "moment": true }, "rules": { /**