SummitLinter
SublimeLinter plugin for the CorvisaCloud Summit platform
Details
Installs
- Total 99K
- Win 50K
- Mac 28K
- Linux 20K
Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 2 | 2 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 6 | 0 | 1 | 3 | 2 | 6 | 2 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 3 | 2 | 1 | 0 | 1 | 4 | 0 | 4 | 3 | 2 | 2 | 2 | 6 | 2 | 3 | 3 | 4 | 2 | 2 |
Mac | 1 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 2 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 2 | 0 | 2 | 4 | 0 | 0 | 2 | 4 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 |
Linux | 0 | 3 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 2 | 1 | 2 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 3 | 2 | 2 | 2 | 1 | 4 | 0 | 2 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 2 | 2 | 0 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
SummitLinter
This linter plugin for SublimeLinter provides an interface to Corvisa LLC's SummitEditor through luacheck
. It will be used with files that have the “Lua (Summit)” syntax.
Installation
SublimeLinter 3 must be installed in order to use this plugin. If SublimeLinter 3 is not installed, please follow the instructions here. SummitEditor must also be installed. If it is not installed, follow the instructions.
Linter installation
Before using this plugin, you must ensure that luacheck
is installed on your system. To install luacheck
, follow the instructions.
Note: luacheck
requires lua
to be installed.
Linter configuration
In order for luacheck
to be executed by SublimeLinter, you must ensure that its path is available to SublimeLinter. Before going any further, please read and follow the steps in “Finding a linter executable” through “Validating your PATH” in the documentation.
Once you have installed and configured luacheck
, you can proceed to install the SummitLinter plugin if it is not yet installed.
Plugin installation
Please use Package Control to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won’t cover that here.
To install via Package Control, do the following:
Within Sublime Text, bring up the Command Palette and type
install
. Among the commands you should seePackage Control: Install Package
. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.When the plugin list appears, type
SummitLinter
. Among the entries you should seeSummitLinter
. If that entry is not highlighted, use the keyboard or mouse to select it.
Settings
For general information on how SublimeLinter works with settings, please see Settings. For information on generic linter settings, please see Linter Settings.
In addition to the standard SublimeLinter settings, SummitLinter provides its own settings adapted from the luacheck
settings. Those marked as “Default Setting" have their own setting in SublimeLinter's user settings for summitlinter
. Those not marked as “Default Setting” go in the args
list in SublimeLinter's user settings for summitlinter
.
Setting | Description | Default Setting |
---|---|---|
-g, --no-global |
Do not check for accessing global variables. | |
-r, --no-redefined |
Do not check for redefined variables. | |
-u, --no-unused |
Do not check for unused variables. | |
-a, --no-unused-args |
Do not check for unused arguments and loop variables. | |
-v, --no-unused-values |
Do not check for unused values. | |
globals [<global>] |
Defined globals. | ✓ |
-c, --compat |
Adjust globals for Lua 5.1/5.2 compatibility. | |
-e, --ignore-env |
Do not be _ENV-aware. | |
ignore [<var>] |
Do not report warnings related to these variables | ✓ |
only [<var>] |
Only report warnings related to these variables | ✓ |
limit <limit> |
Exit with 0 if there are <limit> or less warnings. | ✓ |
-q, --quiet |
Suppress output for files without warnings. -qq : Only print total number of warnings and errors. -qqq : Suppress output completely. |
Settings marked as “Default Setting” may also be used inline as per SublimeLinter's documentation. Since, by default, channel
and require
are pre-defined as globals
, using the globals
setting inline requires you to include channel
and require
again in addition to any other settings. For example: -- [SublimeLinter summitlinter-globals:channel,require,foo]
will maintain default behavior while adding foo
as a global. This follows for any default settings saved in SublimeLinter's user settings as well. For example, if "ignore": "foo"
is in your user settings, using ignore
to ignore bar
inline (while continuing to ignore foo
) would require the following: -- [SublimeLinter summitlinter-ignore:foo,bar]
.