roller

Crates.ioroller
lib.rsroller
version0.1.0
sourcesrc
created_at2015-12-22 20:50:51.189636
updated_at2015-12-22 20:50:51.189636
descriptionRoller is a tool for running multiple linters and caching the results.
homepage
repositoryhttps://github.com/john-steidley/roller
max_upload_size
id3732
size7,693
Shawn McElroy (autoferrit)

documentation

README

Roller is a tool for running multiple linters and caching the results. To use Roller, add a .roller_config.json file to your project. Here's an example:

{
  "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"
  ]
}

Then just run roller.

Commit count: 10

cargo fmt