forked from AntonOsika/gpt-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
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 AntonOsika#52 from patillacode/minor-clean-up
Minor clean up
- Loading branch information
Showing
9 changed files
with
133 additions
and
43 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 +1,33 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Distribution / packaging | ||
dist/ | ||
build/ | ||
*.egg-info/ | ||
*.egg | ||
|
||
# Virtual environments | ||
venv/ | ||
ENV/ | ||
|
||
# IDE-specific files | ||
.vscode/ | ||
|
||
# Compiled Python modules | ||
*.pyc | ||
*.pyo | ||
*.pyd | ||
|
||
# macOS specific files | ||
.DS_Store | ||
|
||
# Windows specific files | ||
Thumbs.db | ||
|
||
# this application's specific files | ||
archive |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# https://beta.ruff.rs/docs/configuration/#using-rufftoml | ||
[tool.ruff] | ||
select = ["F", "E", "W", "I001"] | ||
line-length = 90 | ||
show-fixes = false | ||
target-version = "py311" | ||
task-tags = ["TODO", "FIXME"] | ||
exclude = [ | ||
".bzr", | ||
".direnv", | ||
".eggs", | ||
".git", | ||
".ruff_cache", | ||
".svn", | ||
".tox", | ||
".venv", | ||
"__pypackages__", | ||
"_build", | ||
"buck-out", | ||
"build", | ||
"dist", | ||
"node_modules", | ||
"venv", | ||
] | ||
|
||
[tool.ruff.isort] | ||
known-first-party = [] | ||
known-third-party = [] | ||
section-order = [ | ||
"future", | ||
"standard-library", | ||
"third-party", | ||
"first-party", | ||
"local-folder", | ||
] | ||
combine-as-imports = true | ||
split-on-trailing-comma = false | ||
lines-between-types = 1 | ||
|
||
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html | ||
[tool.black] | ||
line-length = 90 | ||
target-version = ["py311"] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
( | ||
/( | ||
\.direnv | ||
| \.eggs | ||
| \.git | ||
| \.tox | ||
| \.venv | ||
| _build | ||
| build | ||
| dist | ||
| 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
openai | ||
typer | ||
black==23.3.0 | ||
openai==0.27.8 | ||
ruff==0.0.272 | ||
typer==0.9.0 |
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