Skip to content

Commit

Permalink
Add support for League Of Legends (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowtter authored Nov 1, 2024
1 parent b5379e3 commit a269ca4
Show file tree
Hide file tree
Showing 34 changed files with 895 additions and 480 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ backup/
.coverage

dataset-values.json
**/league-images/
10 changes: 10 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,23 @@ repos:
language: system
entry: ./etc/scripts/check_commit_msg.sh
stages: [commit-msg]

- id: no-carriage-returns
require_serial: true
name: No Carriage Returns
description: Check that there are no \r characters in .py files
entry: ./etc/scripts/check_no_carriage_returns.sh
language: system
stages: [commit-msg]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks:
- id: mypy
exclude: ^(legacy-backend|tests)/.*$
files: ^crispy-api/api/.*\.py$
stages: [commit]
additional_dependencies: ["types-requests"]
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
Expand Down
Loading

0 comments on commit a269ca4

Please sign in to comment.