-
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.
Refacto de réarangement de la réforme aides_jeunes_reform_dynamic (#160)
Améliore la compréhension et la lisibilité du code - Change l’ordre de certaines méthodes ou fonctions. - Change le nom l'ordre de certaines méthodes ou fonctions. - Change le nom de certaines variables.
- Loading branch information
1 parent
4edc9bb
commit fae47fc
Showing
3 changed files
with
150 additions
and
106 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
; E128/133: We prefer hang-closing visual indents | ||
; E251: We prefer `function(x = 1)` over `function(x=1)` | ||
; F403/405: We ignore * imports | ||
; E501: We do not enforce a maximum line length | ||
; W503: We break lines before binary operators (Knuth's style) | ||
|
||
[flake8] | ||
hang-closing = true | ||
ignore = E128,E251,F403,F405,E501,W503 | ||
docstring-quotes = single | ||
inline-quotes = single | ||
multiline-quotes = single |
Oops, something went wrong.