#multiple #results #running #cache #tool #linter #command

app roller

Roller 是一个运行多个代码检查工具并缓存结果的工具

1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2015年12月22日

#82 in #results

MIT 许可证

7KB
167

Roller 是一个运行多个代码检查工具并缓存结果的工具。要使用 Roller,请将一个 .roller_config.json 文件添加到您的项目中。以下是一个示例

{
  "filetypes": {
    "js": [
      {
        "name": "eslint",
        "command": "node_modules/.bin/eslint",
        "args": ["--config", "eslint.json", "--color"]
      },
      {
        "name": "lintspaces",
        "command": "lintspaces",
        "args": ["-t"]
      }
    ]
  },
  "global_ignore": [
    ".git",
    "node_modules",
    "vendor",
    "bower_components"
  ]
}

然后只需运行 roller

依赖项

~7.5MB
~124K SLoC