从 bash shell 安装 phplint for grunt 的命令是什么?

What is the command to install phplint for grunt from the bash shell?

我习惯使用类似

的东西
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

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

安装简单使用:

npm install grunt-phplint --save-dev;

这是加载任务:

grunt.loadNpmTasks("grunt-phplint");

最后 运行 任务:

phplint: {
    good: [your_php_dir + "*.php"]
},