ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Summit​Linter

by corvisa ST3

SublimeLinter plugin for the CorvisaCloud Summit platform

Details

Installs

  • Total 99K
  • Win 50K
  • Mac 28K
  • Linux 20K
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 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
Windows 0 4 0 1 2 2 1 1 4 3 3 4 1 3 2 0 0 1 1 1 1 0 5 1 2 1 1 3 0 3 0 1 1 2 1 3 2 1 1 1 0 2 3 3 1 1
Mac 0 3 1 0 1 0 3 1 3 1 1 0 0 0 0 0 2 1 0 2 6 2 0 2 1 0 0 0 0 0 0 0 0 2 2 1 1 2 1 1 0 0 0 1 0 0
Linux 0 0 3 0 1 0 0 0 2 0 1 0 1 2 0 0 2 0 0 0 1 1 0 0 2 1 1 0 2 0 0 2 0 1 0 0 0 0 1 2 0 1 1 0 0 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:

  1. Within Sublime Text, bring up the Command Palette and type install. Among the commands you should see Package 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.

  2. When the plugin list appears, type SummitLinter. Among the entries you should see SummitLinter. 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].