-
Notifications
You must be signed in to change notification settings - Fork 64
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 #924 from CodeForPhilly/staging
Staging
- Loading branch information
Showing
6 changed files
with
285 additions
and
143 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
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,49 @@ | ||
[tool.pylint] | ||
ignore = ["awkde/"] | ||
output-format = "colorized,parseable" | ||
|
||
[tool.pylint.'MESSAGES CONTROL'] | ||
disable = ["all"] | ||
enable = ["duplicate-code"] | ||
|
||
[tool.vulture] | ||
exclude = ["awkde/"] | ||
make_whitelist = true | ||
# min_confidence = 80 | ||
sort_by_size = true | ||
|
||
[tool.mypy] | ||
ignore_missing_imports = true | ||
exclude = 'awkde/' | ||
|
||
[tool.ruff] | ||
# Exclude a variety of commonly ignored directories, plus our own | ||
exclude = [ | ||
"awkde/", | ||
".bzr", | ||
".direnv", | ||
".eggs", | ||
".git", | ||
".git-rewrite", | ||
".hg", | ||
".ipynb_checkpoints", | ||
".mypy_cache", | ||
".nox", | ||
".pants.d", | ||
".pyenv", | ||
".pytest_cache", | ||
".pytype", | ||
".ruff_cache", | ||
".svn", | ||
".tox", | ||
".venv", | ||
".vscode", | ||
"__pypackages__", | ||
"_build", | ||
"buck-out", | ||
"build", | ||
"dist", | ||
"node_modules", | ||
"site-packages", | ||
"venv", | ||
] |
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 |
---|---|---|
|
@@ -31,6 +31,8 @@ libpysal = "*" | |
jenkspy = "*" | ||
pyarrow = "*" | ||
tqdm = "*" | ||
vulture = "*" | ||
pylint = "*" | ||
|
||
[dev-packages] | ||
|
||
|
Oops, something went wrong.