如何使用 JSHint 指定自定义报告器
How to specify custom reporter with JSHint
我正在项目中使用 JSHint(在 grunt 任务中),目前已将其设置为使用 "jshint-stylish" 作为报告器。它在 jshint.js 文件中定义,如以下代码所示
module.exports = {
options: {
reporter: require('jshint-stylish'),
但我想使用我自己的自定义记者。如何定义报告器以识别自定义报告器?
使用中确定的结构,我发现我的相对路径不正确。需要注意的重要事项:在识别报告者时不要包括扩展名。在这种情况下也不需要 require 语句。
module.exports = {
options: {
reporter: './example/folder/src/reporters/my_reporter',
我正在项目中使用 JSHint(在 grunt 任务中),目前已将其设置为使用 "jshint-stylish" 作为报告器。它在 jshint.js 文件中定义,如以下代码所示
module.exports = {
options: {
reporter: require('jshint-stylish'),
但我想使用我自己的自定义记者。如何定义报告器以识别自定义报告器?
使用中确定的结构,我发现我的相对路径不正确。需要注意的重要事项:在识别报告者时不要包括扩展名。在这种情况下也不需要 require 语句。
module.exports = {
options: {
reporter: './example/folder/src/reporters/my_reporter',