-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adiciona link encurtado para o repositório. Adiciona .flake8
- Loading branch information
1 parent
2a1b731
commit 98dccd4
Showing
2 changed files
with
13 additions
and
2 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,9 @@ | ||
# E402 -> Module level import not at top of file | ||
# Cause : We might use some imports for testing inside the nbs. | ||
# F401 -> Module imported but unused | ||
# F403 -> 'from module import *' used; unable to detect undefined names | ||
# F405 -> Name may be undefined, or defined from star imports: module | ||
# E265 -> comment block should start with '# ' | ||
# Cause : Avoid error with nbdev commands: #| | ||
[flake8] | ||
ignore = E402,F401,F403,F405,E265 |
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