Skip to content

Commit

Permalink
🔥🔥🔥🔥🔥🔥🔥🔥⚰️ Goodbye (#380)
Browse files Browse the repository at this point in the history
* Goodbye

cli suck

* Setup develop branch for rewrite

* Add pyproject and root command
  • Loading branch information
mayankpatibandla authored Feb 8, 2025
1 parent fb9e846 commit cb6db41
Show file tree
Hide file tree
Showing 129 changed files with 750 additions and 9,131 deletions.
74 changes: 0 additions & 74 deletions .github/workflows/codeql.yml

This file was deleted.

95 changes: 0 additions & 95 deletions .github/workflows/main.yml

This file was deleted.

17 changes: 2 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
.idea
.pyc
__pycache__/

build/
.cache/
dist/

*venv/
.vscode/
*.egg-info/

out/
*.zip
*_pros_capture.png

venv/

*.pyc
41 changes: 41 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
default_language_version:
python: python3.12

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.5
hooks:
- id: ruff
args: [--fix, --config=ruff.toml]
- id: ruff-format
args: [--config=ruff.toml]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
hooks:
- id: pretty-format-toml
args: [--autofix]
- id: pretty-format-yaml
args: [--autofix]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: check-yaml
- id: check-vcs-permalinks
- id: check-merge-conflict
- id: check-case-conflict
- id: check-ast
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: system
types: [python]
require_serial: true
args: [--rcfile=.pylintrc, --output-format=colorized, -rn, -sn]
Loading

0 comments on commit cb6db41

Please sign in to comment.