-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce double quotes by removing skip-string-normalization from blac…
…k config
- Loading branch information
1 parent
16c8abf
commit 18444c3
Showing
15 changed files
with
195 additions
and
196 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,3 @@ filter_files = true | |
|
||
[tool.black] | ||
line-length = 119 | ||
skip-string-normalization = true |
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 |
---|---|---|
@@ -1,100 +1,100 @@ | ||
DEFAULT_IGNORE_PATTERNS: list[str] = [ | ||
# Python | ||
'*.pyc', | ||
'*.pyo', | ||
'*.pyd', | ||
'__pycache__', | ||
'.pytest_cache', | ||
'.coverage', | ||
'.tox', | ||
'.nox', | ||
'.mypy_cache', | ||
'.ruff_cache', | ||
'.hypothesis', | ||
'poetry.lock', | ||
'Pipfile.lock', | ||
"*.pyc", | ||
"*.pyo", | ||
"*.pyd", | ||
"__pycache__", | ||
".pytest_cache", | ||
".coverage", | ||
".tox", | ||
".nox", | ||
".mypy_cache", | ||
".ruff_cache", | ||
".hypothesis", | ||
"poetry.lock", | ||
"Pipfile.lock", | ||
# JavaScript/Node | ||
'node_modules', | ||
'bower_components', | ||
'package-lock.json', | ||
'yarn.lock', | ||
'.npm', | ||
'.yarn', | ||
'.pnpm-store', | ||
"node_modules", | ||
"bower_components", | ||
"package-lock.json", | ||
"yarn.lock", | ||
".npm", | ||
".yarn", | ||
".pnpm-store", | ||
# Version control | ||
'.git', | ||
'.svn', | ||
'.hg', | ||
'.gitignore', | ||
'.gitattributes', | ||
'.gitmodules', | ||
".git", | ||
".svn", | ||
".hg", | ||
".gitignore", | ||
".gitattributes", | ||
".gitmodules", | ||
# Images and media | ||
'*.svg', | ||
'*.png', | ||
'*.jpg', | ||
'*.jpeg', | ||
'*.gif', | ||
'*.ico', | ||
'*.pdf', | ||
'*.mov', | ||
'*.mp4', | ||
'*.mp3', | ||
'*.wav', | ||
"*.svg", | ||
"*.png", | ||
"*.jpg", | ||
"*.jpeg", | ||
"*.gif", | ||
"*.ico", | ||
"*.pdf", | ||
"*.mov", | ||
"*.mp4", | ||
"*.mp3", | ||
"*.wav", | ||
# Virtual environments | ||
'venv', | ||
'.venv', | ||
'env', | ||
'.env', | ||
'virtualenv', | ||
"venv", | ||
".venv", | ||
"env", | ||
".env", | ||
"virtualenv", | ||
# IDEs and editors | ||
'.idea', | ||
'.vscode', | ||
'.vs', | ||
'*.swp', | ||
'*.swo', | ||
'*.swn', | ||
'.settings', | ||
'.project', | ||
'.classpath', | ||
'*.sublime-*', | ||
".idea", | ||
".vscode", | ||
".vs", | ||
"*.swp", | ||
"*.swo", | ||
"*.swn", | ||
".settings", | ||
".project", | ||
".classpath", | ||
"*.sublime-*", | ||
# Temporary and cache files | ||
'*.log', | ||
'*.bak', | ||
'*.swp', | ||
'*.tmp', | ||
'*.temp', | ||
'.cache', | ||
'.sass-cache', | ||
'.eslintcache', | ||
'.DS_Store', | ||
'Thumbs.db', | ||
'desktop.ini', | ||
"*.log", | ||
"*.bak", | ||
"*.swp", | ||
"*.tmp", | ||
"*.temp", | ||
".cache", | ||
".sass-cache", | ||
".eslintcache", | ||
".DS_Store", | ||
"Thumbs.db", | ||
"desktop.ini", | ||
# Build directories and artifacts | ||
'build', | ||
'dist', | ||
'target', | ||
'out', | ||
'*.egg-info', | ||
'*.egg', | ||
'*.whl', | ||
'*.so', | ||
'*.dylib', | ||
'*.dll', | ||
'*.class', | ||
"build", | ||
"dist", | ||
"target", | ||
"out", | ||
"*.egg-info", | ||
"*.egg", | ||
"*.whl", | ||
"*.so", | ||
"*.dylib", | ||
"*.dll", | ||
"*.class", | ||
# Documentation | ||
'site-packages', | ||
'.docusaurus', | ||
'.next', | ||
'.nuxt', | ||
"site-packages", | ||
".docusaurus", | ||
".next", | ||
".nuxt", | ||
# Other common patterns | ||
## Minified files | ||
'*.min.js', | ||
'*.min.css', | ||
"*.min.js", | ||
"*.min.css", | ||
## Source maps | ||
'*.map', | ||
"*.map", | ||
## Terraform | ||
'.terraform', | ||
'*.tfstate*', | ||
".terraform", | ||
"*.tfstate*", | ||
## Dependencies in various languages | ||
'vendor/', | ||
"vendor/", | ||
] |
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.