UNPKG

grunt-phpmd

Version:

Grunt plugin for running PHP Mess Detector.

23 lines (18 loc) 346 B
# # grunt-phpmd # # 'use strict' module.exports = (grunt) -> grunt.initConfig phpmd: test: dir: 'test' test_ignore_warning_code: options: ignoreWarningCode: false dir: 'test' options: bin: 'vendor/bin/phpmd' grunt.loadTasks 'tasks' grunt.registerTask 'default', ['phpmd']