-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Refactor project structure by renaming package, adding new apps…
…, and removing deprecated files
- Loading branch information
1 parent
9444e28
commit e014057
Showing
46 changed files
with
3,171 additions
and
116 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Set default behavior to automatically normalize line endings | ||
* text=auto | ||
|
||
# Python files | ||
*.py text diff=python eol=lf | ||
*.pyw text diff=python eol=lf | ||
|
||
# Web files | ||
*.html text eol=lf | ||
*.css text eol=lf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
|
||
# Config files | ||
*.yml text eol=lf | ||
*.yaml text eol=lf | ||
*.toml text eol=lf | ||
*.ini text eol=lf | ||
*.cfg text eol=lf | ||
.gitattributes text eol=lf | ||
.gitignore text eol=lf | ||
.pre-commit-config.yaml text eol=lf |
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,43 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v5.0.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
exclude: | | ||
(?x)^( | ||
.*\.(md|rst)$| | ||
migrations/.*\.py| | ||
.*\.(css|js|html)$ | ||
)$ | ||
- id: end-of-file-fixer | ||
exclude: | | ||
(?x)^( | ||
migrations/.*\.py| | ||
.*\.(css|js|html)$ | ||
)$ | ||
- id: mixed-line-ending | ||
args: [--fix=lf] | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- id: check-merge-conflict | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: 6.1.0 | ||
hooks: | ||
- id: flake8 | ||
args: [--max-line-length=120, --extend-ignore=E203,W503,E501] | ||
exclude: migrations/ | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 23.12.1 | ||
hooks: | ||
- id: black | ||
args: [--line-length=120] | ||
exclude: migrations/ | ||
|
||
- repo: https://github.com/pycqa/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
args: [--profile=black, --line-length=120] | ||
exclude: migrations/ |
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.