-
Notifications
You must be signed in to change notification settings - Fork 9
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 SublimeLinter/fix-for-4.3
Fixes for 4.3
- Loading branch information
Showing
3 changed files
with
18 additions
and
3 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,12 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
|
||
# D100 Missing docstring in public module | ||
# D101 Missing docstring in public class | ||
# D102 Missing docstring in public method | ||
# D103 Missing docstring in public function | ||
# D104 Missing docstring in public package | ||
# D105 Missing docstring in magic method | ||
# D107 Missing docstring in __init__ | ||
ignore = D100,D101,D102,D103,D105,D107 | ||
|
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ python: | |
install: | ||
- pip install flake8 | ||
script: | ||
- flake8 . --max-line-length=120 | ||
- flake8 |
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