aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/.eslintrc
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-09-10 17:21:38 +0200
committerStas Vilchik <vilchiks@gmail.com>2015-09-10 17:21:47 +0200
commitab4f18fbeba4cc4a8db3371008e0dbb29c99f10b (patch)
treec871458807e114007e73970c6cd14d9e6bbcb1d9 /server/sonar-web/.eslintrc
parentcbf5602a23ce9138b62c593d4e290566eaf97522 (diff)
downloadsonarqube-ab4f18fbeba4cc4a8db3371008e0dbb29c99f10b.tar.gz
sonarqube-ab4f18fbeba4cc4a8db3371008e0dbb29c99f10b.zip
improve code quality
Diffstat (limited to 'server/sonar-web/.eslintrc')
-rw-r--r--server/sonar-web/.eslintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/.eslintrc b/server/sonar-web/.eslintrc
index e8523d53f38..95ac0b44959 100644
--- a/server/sonar-web/.eslintrc
+++ b/server/sonar-web/.eslintrc
@@ -106,7 +106,7 @@
"no-shadow-restricted-names": 1, // disallow shadowing of names such as arguments
"no-undef": 2, // disallow use of undeclared variables unless mentioned in a /*global */ block
"no-undef-init": 2, // disallow use of undefined when initializing variables
- "no-undefined": 2, // disallow use of undefined variable (off by default)
+ "no-undefined": 0, // disallow use of undefined variable (off by default)
"no-unused-vars": 2, // disallow declaration of variables that are not used in the code
"no-use-before-define": 0, // disallow use of variables before they are defined