Skip to content

Commit

Permalink
inline settings deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Dec 28, 2017
1 parent 9386b19 commit 8f5dd87
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 65 deletions.
14 changes: 0 additions & 14 deletions .sublimelinterrc

This file was deleted.

62 changes: 12 additions & 50 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ SublimeLinter-cpplint

[![Build Status](https://travis-ci.org/SublimeLinter/SublimeLinter-cpplint.svg?branch=master)](https://travis-ci.org/SublimeLinter/SublimeLinter-cpplint)

This linter plugin for [SublimeLinter][docs] provides an interface to [cpplint](https://pypi.python.org/pypi/cpplint). It will be used with files that have the “C++” syntax.
This linter plugin for SublimeLinter provides an interface to [cpplint](https://pypi.python.org/pypi/cpplint). It will be used with files that have the “C++” syntax.

## Installation
SublimeLinter 3 must be installed in order to use this plugin. If SublimeLinter 3 is not installed, please follow the instructions [here][installation].
SublimeLinter must be installed in order to use this plugin.

Please use [Package Control](https://packagecontrol.io) to install the linter plugin.

### Linter installation
Before using this plugin, you must ensure that `cpplint` is installed on your system. To install `cpplint`, do the following:

1. Install [Python](http://python.org/download/) and [pip](http://www.pip-installer.org/en/latest/installing.html).
Expand All @@ -18,57 +19,18 @@ Before using this plugin, you must ensure that `cpplint` is installed on your sy
[sudo] pip install cpplint
```

Once `cpplint` is installed, you must ensure it is in your system PATH so that SublimeLinter can find it. This may not be as straightforward as you think, so please read about [how linter executables are located][locating-executables] in the documentation.

### Linter configuration
In order for `cpplint` 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”](http://sublimelinter.readthedocs.org/en/latest/troubleshooting.html#finding-a-linter-executable) through “Validating your PATH” in the documentation.

Once you have installed and configured `cpplint`, you can proceed to install the SublimeLinter-cpplint plugin if it is not yet installed.

### Plugin installation
Please use [Package Control][pc] 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][cmd] 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.
In order for `cpplint` to be executed by SublimeLinter, you must ensure that its path is available to SublimeLinter. The docs cover [troubleshooting PATH configuration](http://sublimelinter.readthedocs.io/en/latest/troubleshooting.html#finding-a-linter-executable).

1. When the plugin list appears, type `cpplint`. Among the entries you should see `SublimeLinter-cpplint`. 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][settings]. For information on generic linter settings, please see [Linter Settings][linter-settings].
- SublimeLinter settings: http://sublimelinter.readthedocs.org/en/latest/settings.html
- Linter settings: http://sublimelinter.readthedocs.org/en/latest/linter_settings.html

In addition to the standard SublimeLinter settings, SublimeLinter-cpplint provides its own settings. Those marked as “Inline Override” may also be [used inline][inline-settings].
Additional settings for SublimeLinter-cpplint

|Setting|Description|Inline Override|
|:------|:----------|:-------------:|
|filter|A comma-separated list of category-filters to apply|✓|
|linelength|The allowed line length (with cpplint >= 0.0.6)|✓|
|Setting|Description|
|:------|:----------|
|filter|A comma-separated list of category-filters to apply|
|linelength|The allowed line length (with cpplint >= 0.0.6)|

``filter`` can be a single string (anywhere) or array of strings (anywhere but inline).

## Contributing
If you would like to contribute enhancements or fixes, please do the following:

1. Fork the plugin repository.
1. Hack on a separate topic branch created from the latest `master`.
1. Commit and push the topic branch.
1. Make a pull request.
1. Be patient. ;-)

Please note that modications should follow these coding guidelines:

- Indent is 4 spaces.
- Code should pass flake8 and pep257 linters.
- Vertical whitespace helps readability, don’t be afraid to use it.
- Please use descriptive variable names, no abbrevations unless they are very well known.

Thank you for helping out!

[docs]: http://sublimelinter.readthedocs.org
[installation]: http://sublimelinter.readthedocs.org/en/latest/installation.html
[locating-executables]: http://sublimelinter.readthedocs.org/en/latest/usage.html#how-linter-executables-are-located
[pc]: https://sublime.wbond.net/installation
[cmd]: http://docs.sublimetext.info/en/sublime-text-3/extensibility/command_palette.html
[settings]: http://sublimelinter.readthedocs.org/en/latest/settings.html
[linter-settings]: http://sublimelinter.readthedocs.org/en/latest/linter_settings.html
[inline-settings]: http://sublimelinter.readthedocs.org/en/latest/settings.html#inline-settings
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"install": "messages/install.txt"
"install": "messages/install.txt",
"1.0.8": "messages/1.0.8.txt"
}
6 changes: 6 additions & 0 deletions messages/1.0.8.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SublimeLinter-cpplint
-------------------------------
Inline settings will be no longer be supported in SublimeLinter 4.
Please use cppcheck configuration files etc. instead.

https://github.com/SublimeLinter/SublimeLinter3/blob/next/messages/4.0.0-rc.1.txt

0 comments on commit 8f5dd87

Please sign in to comment.