2022-03-17 22:19:08 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-02-29 19:48:14 +00:00
|
|
|
module.exports = function ( grunt ) {
|
2022-03-17 22:19:08 +00:00
|
|
|
const conf = grunt.file.readJSON( 'extension.json' );
|
2018-03-19 16:07:25 +00:00
|
|
|
|
2016-12-23 20:04:34 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
2018-02-07 21:08:04 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
2017-04-16 17:53:12 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
2016-02-29 19:48:14 +00:00
|
|
|
|
|
|
|
grunt.initConfig( {
|
2018-03-19 16:07:25 +00:00
|
|
|
banana: conf.MessagesDirs,
|
2018-02-07 21:08:04 +00:00
|
|
|
eslint: {
|
2019-04-03 22:44:45 +00:00
|
|
|
options: {
|
2020-06-08 22:28:54 +00:00
|
|
|
cache: true,
|
|
|
|
fix: grunt.option( 'fix' )
|
2019-04-03 22:44:45 +00:00
|
|
|
},
|
2023-11-08 14:02:35 +00:00
|
|
|
all: [ '.' ]
|
2017-04-16 17:53:12 +00:00
|
|
|
},
|
|
|
|
stylelint: {
|
|
|
|
all: [
|
2023-11-28 19:06:41 +00:00
|
|
|
'**/*.{css,less}',
|
2017-08-19 06:52:42 +00:00
|
|
|
'!node_modules/**',
|
|
|
|
'!vendor/**'
|
2016-02-29 19:48:14 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2019-05-06 20:56:34 +00:00
|
|
|
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'banana' ] );
|
2016-02-29 19:48:14 +00:00
|
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
};
|