-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ignore all virtual envs * Fixed PYL-W0102 * State test_patterns * Fix BAN-B101 * Fixed FLK-E501 regression * Skip PYL-E1111 * Skip PYL-W0703 * Fix PYL-W0404 * Fix PYL-W0621 * Clean up unused imports * Fix FLK-E266 * Better variable names * Better global variable naming * Fixed docstring utilities * Fixed FLK-E501 * Cleaned up some trailing whitespace * Fixed PYL-R1705 * Fixed FLK-W291 * Started adding missing docstrings * Removed blank line whitespace * Fix FLK-D200 * Fixed OrderedDict import * Started fixing PYL-W0212 * Created FieldSchema for single-field data validation * Silence PYL-W0212 (no alternative found) * Added a note on our _get_current_object use * Fixed some more PYL-W0212 * Fixed FLK-W293 * Fixed PYL-W0611 * Added dependency_file_paths
- Loading branch information
Showing
22 changed files
with
294 additions
and
112 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 |
---|---|---|
@@ -1,8 +1,19 @@ | ||
version = 1 | ||
|
||
# Glob pattern of the test files | ||
test_patterns = [ | ||
"tests/**", | ||
"test_*.py" | ||
] | ||
|
||
[[analyzers]] | ||
name = "python" | ||
enabled = true | ||
|
||
dependency_file_paths = [ | ||
"poetry.lock", | ||
"pyproject.toml" | ||
] | ||
|
||
[analyzers.meta] | ||
runtime_version = "3.x.x" |
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 |
---|---|---|
|
@@ -102,8 +102,8 @@ celerybeat.pid | |
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
.env* | ||
.venv* | ||
env/ | ||
venv/ | ||
ENV/ | ||
|
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
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
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
Oops, something went wrong.