don't lint Gruntfile
All checks were successful
All checks were successful
This commit is contained in:
parent
b4036b1457
commit
eafbb940cb
2 changed files with 58 additions and 53 deletions
|
@ -1,6 +1,7 @@
|
||||||
module.exports = function (grunt) {
|
module.exports = function (grunt) {
|
||||||
// Project configuration.
|
// Project configuration.
|
||||||
grunt.initConfig({
|
grunt.initConfig(
|
||||||
|
{
|
||||||
checktextdomain: {
|
checktextdomain: {
|
||||||
options:{
|
options:{
|
||||||
text_domain: 'activitypub-event-bridge',
|
text_domain: 'activitypub-event-bridge',
|
||||||
|
@ -47,7 +48,8 @@ module.exports = function(grunt) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
);
|
||||||
|
|
||||||
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' );
|
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' );
|
||||||
grunt.loadNpmTasks( 'grunt-checktextdomain' );
|
grunt.loadNpmTasks( 'grunt-checktextdomain' );
|
||||||
|
|
|
@ -29,6 +29,9 @@
|
||||||
<!-- Exclude minified Javascript files. -->
|
<!-- Exclude minified Javascript files. -->
|
||||||
<exclude-pattern>*.min.js</exclude-pattern>
|
<exclude-pattern>*.min.js</exclude-pattern>
|
||||||
|
|
||||||
|
<!-- Exclude the Grundfile.js. -->
|
||||||
|
<exclude-pattern>Gruntfile.js</exclude-pattern>
|
||||||
|
|
||||||
<!-- Strip the filepaths down to the relevant bit. -->
|
<!-- Strip the filepaths down to the relevant bit. -->
|
||||||
<arg name="basepath" value="."/>
|
<arg name="basepath" value="."/>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue