SublimeLinter-contrib-makefile
SublimeLinter plugin for Makefiles
Details
Installs
- Total 234
- Win 108
- Mac 57
- Linux 69
Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 2 | 0 | 1 | 1 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
About
A plugin for SublimeLinter which provides linting for Makefiles.
Installation
Use Package Control: search for a
package named SublimeLinter-contrib-makefile
and install it.
SublimeLinter must also be installed.
Checkers
This plugin is able to detect the following mistakes. They will be visually signaled in the status bar and the left gutter.
Undefined global variable names
Correct:
FOO = 1
test:
echo $(FOO)
Incorrect:
test:
echo $(FOO)
Undefined target names
Correct:
clean:
rm -rf build/*
test:
${MAKE} clean
pytest .
Incorrect:
test:
${MAKE} clean
pytest .
Duplicated targets
When there's 2 targets with the same name, e.g.:
test:
pytest .
test:
pytest .
Use of spaces instead of tabs
Any line starting with a space instead of tab is considered an error, e.g.
test1:
pytest . # use tab
test2:
pytest . # use spaces
Missing .PHONY
directive
This will print missing .PHONY declaration
if there's a file or directory
named “test” in the same directory as the Makefile:
test:
pytest .
Trailing spaces
Any trailing space at the end of the line, e.g.:
test:
pytest .<SPACE><SPACE><SPACE>
Unnecessary empty lines at EOF
E.g.:
test:
pytest .
Motivations
Why not use an existing CLI tool?
As stated in https://github.com/SublimeLinter/package_control_channel/pull/134, the motivation which led me to write this plugin is because the only Makefile linter I found is https://github.com/mrtazz/checkmake, which provides a quite limited set of rules. I wanted a linter which was able to identify at least undefined variable names, undefined target names, and the use of spaces instead of tabs. I found none so I wrote my own.
Why not turn this into a generic CLI tool?
Indeed that probably makes a lot more sense. I may (or may not) do this later. :)