diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-07-15 14:58:21 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-07-15 14:58:21 -0300 |
commit | 3b3143d38611fc04a4ff7cba9a27a14f7ef1d8f9 (patch) | |
tree | d1dea5276cc6dd368838b5e4cda2bb35ec7da02d /skins/ArchLinux/Gruntfile.js | |
parent | 74f7c8a0bea120fb56c3faa813add46b63108d5c (diff) |
Revert some changes for compatibilitycoadde/master
Diffstat (limited to 'skins/ArchLinux/Gruntfile.js')
-rw-r--r-- | skins/ArchLinux/Gruntfile.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/skins/ArchLinux/Gruntfile.js b/skins/ArchLinux/Gruntfile.js new file mode 100644 index 00000000..9c56558a --- /dev/null +++ b/skins/ArchLinux/Gruntfile.js @@ -0,0 +1,20 @@ +/*jshint node:true */ +module.exports = function ( grunt ) { + grunt.loadNpmTasks( 'grunt-banana-checker' ); + grunt.loadNpmTasks( 'grunt-jsonlint' ); + + grunt.initConfig( { + banana: { + all: 'i18n/' + }, + jsonlint: { + all: [ + '**/*.json', + '!node_modules/**' + ] + } + } ); + + grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] ); + grunt.registerTask( 'default', 'test' ); +}; |