summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Scribunto/Gruntfile.js')
-rw-r--r--www/wiki/extensions/Scribunto/Gruntfile.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/www/wiki/extensions/Scribunto/Gruntfile.js b/www/wiki/extensions/Scribunto/Gruntfile.js
new file mode 100644
index 00000000..35b9ec48
--- /dev/null
+++ b/www/wiki/extensions/Scribunto/Gruntfile.js
@@ -0,0 +1,40 @@
+/* eslint-env node, es6 */
+module.exports = function ( grunt ) {
+ grunt.loadNpmTasks( 'grunt-banana-checker' );
+ grunt.loadNpmTasks( 'grunt-eslint' );
+ grunt.loadNpmTasks( 'grunt-jsonlint' );
+ grunt.loadNpmTasks( 'grunt-stylelint' );
+
+ grunt.initConfig( {
+ eslint: {
+ options: {
+ cache: true
+ },
+ all: [
+ '**/*.js',
+ '!node_modules/**',
+ '!vendor/**'
+ ]
+ },
+ banana: {
+ all: 'i18n/'
+ },
+ jsonlint: {
+ all: [
+ '**/*.json',
+ '!node_modules/**',
+ '!vendor/**'
+ ]
+ },
+ stylelint: {
+ all: [
+ '**/*.css',
+ '!node_modules/**',
+ '!vendor/**'
+ ]
+ }
+ } );
+
+ grunt.registerTask( 'test', [ 'eslint', 'jsonlint', 'banana', 'stylelint' ] );
+ grunt.registerTask( 'default', 'test' );
+};