0

我习惯使用类似的东西

npm install grunt-contrib-jshint --save-dev

安装。

然而这并没有奏效:

npm install grunt-contrib-phplint --save-dev

我在这里找到了这些网站:

https://www.npmjs.com/package/phplint

https://github.com/jgable/grunt-phplint

但它看起来与我的其余代码不匹配。我当然需要安装它并修改 Gruntfile.js。

// you must load each module
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-cssmin');
// grunt.loadNpmTasks("grunt-phplint"); // from links
4

1 回答 1

0

奇怪的是,这个特定的包不使用 contrib- 前缀。

只需用于安装:

npm install grunt-phplint --save-dev;

这要加载任务:

grunt.loadNpmTasks("grunt-phplint");

最后这是运行任务:

phplint: {
    good: [your_php_dir + "*.php"]
},
于 2016-04-04T04:41:18.817 回答