frontend/.pnpm-store/v3/files/1d/0487dd0e1226c50cd7697034c1aefc0683d2d88a70147a4ba511b8133070cab5ccbc1fd64c24237cc8064869889905cc0ce045f93d41887e0c80f667ace8d9

36 lines
793 B
Plaintext

/*jshint node:true */
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
complexity: {
options: {
errorsOnly: false,
cyclomatic: 10,
halstead: 30,
maintainability: 85
},
generic: {
src: [
'mousetrap.js'
]
},
plugins: {
src: [
'plugins/**/*.js',
'!plugins/**/tests/**',
'!plugins/**/*.min.js'
]
}
}
});
grunt.loadNpmTasks('grunt-complexity');
grunt.registerTask('default', [
'complexity'
]);
};