forked from SublimeText/TrailingSpaces
-
Notifications
You must be signed in to change notification settings - Fork 14
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 #16 from popsikle/master
ST3 Fixes and such.
- Loading branch information
Showing
4 changed files
with
170 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.py[cod] | ||
*.pickle | ||
*.pcl | ||
|
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,2 @@ | ||
[pep8] | ||
ignore=E111,E114,E121,E124,E261 |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[flake8] | ||
; Ignored error codes: | ||
; E111 indentation is not a multiple of four | ||
; E114 indentation is not a multiple of four (comments) | ||
; E121 continuation line indentation is not a multiple of four | ||
; E124 closing bracket does not match visual indentation | ||
; E261 at least two spaces before inline comment | ||
; | ||
; See also: http://pep8.readthedocs.org/en/latest/intro.html#error-codes | ||
; See also: https://flake8.readthedocs.org/en/2.0/warnings.html#error-codes | ||
ignore=E111,E114,E121,E124,E261 | ||
max-line-length = 79 |