Skip to content

John-Steidley/roller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Roller is a tool for running multiple linters and caching the results.

Clippy Linting Result

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages