-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improving the dev workflow: Milestone 1.1.3 Custom pylint checks #4967
Merged
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
28f20ed
Merge pull request #13 from oppia/develop
apb7 cdc2856
Merge pull request #14 from oppia/develop
apb7 af636ec
Merge pull request #15 from oppia/develop
apb7 860d44c
Merge pull request #16 from oppia/develop
apb7 0cdc197
Merge pull request #19 from oppia/develop
apb7 bf888ba
Merge pull request #20 from oppia/develop
apb7 5e546fd
Merge pull request #21 from oppia/develop
apb7 9859cd2
Merge pull request #22 from oppia/develop
apb7 e90fcde
Merge pull request #23 from oppia/develop
apb7 b7b69fb
Merge pull request #24 from oppia/develop
apb7 108bd8d
Merge pull request #25 from oppia/develop
apb7 f165670
Merge pull request #26 from oppia/develop
apb7 759e4da
Merge pull request #27 from oppia/develop
apb7 420df20
Merge pull request #28 from oppia/develop
apb7 0fb552c
Merge pull request #29 from oppia/develop
apb7 91dfed9
Merge pull request #30 from oppia/develop
apb7 c1f8fea
Merge pull request #31 from oppia/develop
apb7 8cf6257
Add local check
apb7 dab5560
Basic setup
apb7 1a09342
Fix basic lint errors
apb7 858c9fc
lint fix
apb7 a604851
more lint fix
apb7 d4f2f8c
more lint fix
apb7 493ddab
lint fix core/controllers
apb7 0a9ef41
partial lint fix core/domain
apb7 a68d0d7
partial lint fix core/domain()
apb7 190d70d
partial lint fix core/domain(2)
apb7 e5f6404
lint fix core/domain
apb7 d2f2217
lint fix core/platform
apb7 0ec1b0e
lint fix core/storage(1)
apb7 9552aa9
lint fix core/storage(2)
apb7 967925c
lint fix core/tests
apb7 5a94ba6
lint fix core/jobs.py
apb7 3740fa1
lint fix scripts
apb7 16af003
Merge pull request #32 from oppia/develop
apb7 038cd2b
Merge branch 'develop' of https://github.com/apb7/oppia into custom-p…
apb7 aeeb2b6
more fixes
apb7 7bfcffa
some more fixes
apb7 bd9548b
add tests
apb7 c83ea68
lint fix
apb7 b6f14f1
Update returns
apb7 308b750
Review changes(1)
apb7 2110909
lint fix
apb7 5ceec71
minor fix
apb7 9075e29
Address all review comments except returns
apb7 9e66a21
lint fix
apb7 c616ecd
fix yields
apb7 aa63883
remove unnecessary returns
apb7 8b354ca
Fix backend tests
apb7 058b7ee
Address all review comments
apb7 3496860
Add doc utils
apb7 dae48e7
Add yields line
apb7 3cc5d33
lint fix
apb7 f398be4
Review changes
apb7 5769c5f
Review changes
apb7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
more lint fix
- Loading branch information
commit a604851e17838ff3f376011c368dc554bb03ecae
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need to follow their convention here. We can just call our file docstrings_checker.py or similar and do
import docstrings_checker
.In general try to avoid aliasing (import X as Y) where possible.