Skip to content

Commit

Permalink
chore: update env files
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Nov 7, 2023
1 parent 5f41f79 commit 5edd2ab
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/node_modules/
/.mypy_cache/
/.tox/
.mypy_cache
.tox
.venv-*/
.venv/
__pycache__
node_modules
18 changes: 13 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tool.isort]
line_length = 120
profile = 'black'
py_version=38
py_version = 38
skip_glob = [
".venv/**",
".venv-*/**",
"br-*/**",
"branch-*/**",
"libs/**",
Expand All @@ -12,22 +13,29 @@ skip_glob = [
"typings/**",
"vendor/**",
"venv/**",
"venv-*/**",
]

[tool.pycln]
all = true
exclude = '(\.git|\.?venv|\.mypy_cache|br-.*|branch-.*|libs|stubs|typings|node_modules)/'
[tool.autoflake]
quiet = true
recursive = true
remove-all-unused-imports = true
exclude = '\.git,\.?venv(-.*)?,\.mypy_cache,br-.*,branch-.*,libs,stubs,tests/files,typings'

[tool.black]
preview = true # use latest feature
line-length = 120
target-version = ['py38']
exclude = '''
/(
\.git |
\.venv(-.*)? |
language-server |
plugin/libs |
resources |
stubs
stubs |
typings |
_resources
)/
'''

Expand Down

0 comments on commit 5edd2ab

Please sign in to comment.