Crates.io | roller |
lib.rs | roller |
version | 0.1.0 |
source | src |
created_at | 2015-12-22 20:50:51.189636 |
updated_at | 2015-12-22 20:50:51.189636 |
description | Roller is a tool for running multiple linters and caching the results. |
homepage | |
repository | https://github.com/john-steidley/roller |
max_upload_size | |
id | 3732 |
size | 7,693 |
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
.