Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-04-15 18:25:49 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-15 18:25:49 +0400
commit0d3ce5a653fc2b8731ab853921788935c771aeae (patch)
treef75c96d547b02acc6f989ef7232a57a25ad5ddf7 /.jshintrc
parenta6f93e99ee6c88b6074111a9842eaea6482619d5 (diff)
Relax some js checking
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc9
1 files changed, 6 insertions, 3 deletions
diff --git a/.jshintrc b/.jshintrc
index 1e6437042d..a22fcc4117 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -1,4 +1,7 @@
{
+ // Show more errors
+ "maxerr" : 200,
+
// Globals
"jquery" : true,
@@ -9,11 +12,11 @@
"latedef" : true,
"noarg" : true,
"noempty" : true,
- "unused" : true,
+ "unused" : false,
"trailing" : true,
// Relaxing rules
- "sub" : false,
- "funcscope" : false,
+ "sub" : true,
+ "funcscope" : true,
"laxbreak" : false
}