-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from SublimeLinter/real-files
only run on the actual files always
- Loading branch information
Showing
3 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"install": "messages/install.txt", | ||
"1.4.0": "messages/1.4.0.txt" | ||
"1.4.0": "messages/1.4.0.txt", | ||
"1.5.0": "messages/1.5.0.txt" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
SublimeLinter-pylint 1.5.0 | ||
-------------------------- | ||
|
||
Pylint now only runs on the actual files, i.e. on load and on save. | ||
|
||
This ensures it runs in a context where imports are available etc. Previously, | ||
it would try to switch behaviour on the fly, which would result in different | ||
errors depending on how pylint was run. |