Skip to content

Commit 6ef1ca0

Browse files
committed
Removed phpcs references from Gruntfile.
1 parent 8563c6b commit 6ef1ca0

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

Gruntfile.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,13 @@ module.exports = function(grunt) {
2020
},
2121
phplint: {
2222
plugin: phpPaths
23-
},
24-
phpcs: {
25-
plugin: {
26-
src: phpPaths
27-
},
28-
options: {
29-
bin: 'vendor/bin/phpcs',
30-
standard: 'src/ruleset-wordpress.xml'
31-
}
3223
}
3324
});
3425

3526
grunt.loadNpmTasks('grunt-wp-readme-to-markdown');
3627
grunt.loadNpmTasks('grunt-phplint');
37-
grunt.loadNpmTasks('grunt-phpcs');
3828

39-
grunt.registerTask('default', ['phplint', 'phpcs']);
29+
grunt.registerTask('default', ['phplint']);
4030

4131
grunt.registerTask('readme', ['wp_readme_to_markdown']);
4232
};

0 commit comments

Comments
 (0)