SublimeLinter-contrib-makefile
SublimeLinter plugin for Makefiles
Details
Installs
- Total 220
- Win 103
- Mac 51
- Linux 66
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 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 2 | 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. :)