Bladeren bron

Moved specific configs to the config files. Avoid scattering them around.

Piotrek Koszuliński 10 jaren geleden
bovenliggende
commit
a089cddc99
2 gewijzigde bestanden met toevoegingen van 5 en 4 verwijderingen
  1. 5 1
      .jshintrc
  2. 0 3
      gruntfile.js

+ 5 - 1
.jshintrc

@@ -9,5 +9,9 @@
 	"unused": true,
 	"strict": true,
 
-	"globalstrict": true
+	"globalstrict": true,
+
+	"globals": {
+		"bender": false
+	}
 }

+ 0 - 3
gruntfile.js

@@ -18,9 +18,6 @@ module.exports = function( grunt ) {
 
 		jshint: {
 			options: {
-				globals: {
-					'bender': false
-				},
 				ignores: ignoreFiles
 			}
 		},