Browse Source

Use default .jscsrc and .jshintrc confing files. It means that if any subdirectory will contain config file it will be used.

Piotr Jasiun 10 years ago
parent
commit
e7f08b7320

+ 3 - 1
packages/ckeditor5-ui/dev/tasks/jscs.js

@@ -7,7 +7,9 @@ var tools = require( './utils/tools' );
 module.exports = function( grunt ) {
 	tools.setupMultitaskConfig( grunt, {
 		task: 'jscs',
-		defaultOptions: grunt.file.readJSON( '.jscsrc' ),
+		defaultOptions: {
+				config: true
+			},
 		addGitIgnore: 'excludeFiles',
 		targets: {
 			all: function() {

+ 3 - 1
packages/ckeditor5-ui/dev/tasks/jshint.js

@@ -7,7 +7,9 @@ var tools = require( './utils/tools' );
 module.exports = function( grunt ) {
 	tools.setupMultitaskConfig( grunt, {
 		task: 'jshint',
-		defaultOptions: grunt.file.readJSON( '.jshintrc' ),
+		defaultOptions: {
+				jshintrc: true
+			},
 		addGitIgnore: 'ignores',
 		targets: {
 			all: function() {