SummitLinter
SublimeLinter plugin for the CorvisaCloud Summit platform
Details
Installs
- Total 100K
- Win 51K
- Mac 29K
- Linux 21K
| Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 1 | 0 | 0 | 0 | 1 | 2 | 2 | 2 | 1 | 1 | 2 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 2 | 3 | 0 | 0 | 0 | 1 | 3 | 1 | 3 | 0 | 3 | 1 | 3 | 1 | 0 | 3 | 1 | 3 | 0 | 0 | 2 | 2 | 0 | 0 |
| Mac | 0 | 1 | 0 | 1 | 0 | 2 | 1 | 0 | 1 | 1 | 2 | 0 | 0 | 1 | 2 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 3 | 1 | 1 | 0 | 3 | 1 |
| Linux | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 4 | 0 | 2 | 0 | 1 | 3 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
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 globalssetting 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].