4 releases

0.3.3 Feb 19, 2019
0.3.2 Feb 18, 2019
0.3.1 Feb 17, 2019
0.3.0 Feb 17, 2019

#10 in #staged

Download history 5/week @ 2024-02-19 5/week @ 2024-02-26 77/week @ 2024-04-01

77 downloads per month

MIT license

34KB
528 lines

This tool aims to run multiple linters on a commit range compatible with git.

Inspired by lint-diff and lint-staged

Linters are great tools to enforce code style in your code, but it has some limitations: it can only lint entire files.
When working with legacy code, we often have to make changes to very large files (which would be too troublesome to fix all lint errors)
and thus it would be good to lint only the lines changed and not the entire file.

lint-emit receives a commit range and uses the specified linters to lint the changed files and filter only the errors introduced in the commit range (and nothing more).

Configuration

You can add a linter by editing the config file found in your user path.

  • Linux: /home/alice/.config/lint-emit
  • Windows: C:\Users\Alice\AppData\Roaming\ragone\lint-emit
  • macOS: /Users/Alice/Library/Preferences/io.ragone.lint-emit

If no config file is found, you will be asked which default linters you would like to add.

[[linters]]                                                                                                                                                                 
name = "eslint"                                                                                                                                                             
cmd = "eslint"                                                                                                                                                              
args = ["{file}", "-f=compact"]                                                                                                                                             
regex = '(?P<file>.*): line (?P<line>\d*), col \d*, (?P<message>.*)'                                                                                                        
ext = ["js", "jsx"]                                                                                                                                                         

Installation

cargo install lint-emit

Usage

Lint the last commit

$ lint-emit HEAD^..HEAD                                                                                                                                                     

Lint the last 3 commits

$ lint-emit HEAD~3..HEAD                                                                                                                                                    

Lint local changes that are not yet committed

$ lint-emit HEAD                                                                                                                                                            
# or                                                                                                                                                                        
$ lint-emit                                                                                                                                                                 

Lint using phpmd and phpcs

$ lint-emit --linters phpmd phpcs                                                                                                                                           

Dependencies

~8–19MB
~230K SLoC