mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-20 14:46:02 +08:00
* Update treasury command to get directly from fed * test * Fix the codespell lint * Mypy * help text * mypy + askobb update * pylint now * Fix #5190 * Fix report * ruff life * Fix #5172 * economy report titles * Make the chart nicer
78 lines
2.4 KiB
YAML
Vendored
78 lines
2.4 KiB
YAML
Vendored
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
exclude_types: [css, markdown, text, svg]
|
|
- id: trailing-whitespace
|
|
exclude_types: [html, markdown, text]
|
|
- id: check-merge-conflict
|
|
- id: detect-private-key
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.1.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
rev: "v0.0.256"
|
|
hooks:
|
|
- id: ruff
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.5
|
|
hooks:
|
|
- id: codespell
|
|
entry: codespell
|
|
args:
|
|
[
|
|
"--ignore-words-list=VAI,MIS,shs,gard,te,commun,ro,zar,vie,hel,jewl,zlot,ba,buil,coo,ether,hist,hsi,mape,navagation,operatio,pres,ser,yeld,shold,ist,varian,datas,ake,creat,statics,ket,toke,certi,buidl,ot",
|
|
"--quiet-level=2",
|
|
"--skip=./tests,.git,*.css,*.csv,*.html,*.ini,*.ipynb,*.js,*.json,*.lock,*.scss,*.txt,*.yaml,build/pyinstaller/*,./website/config.toml",
|
|
"-x=openbb_terminal/economy/fedreserve_model.py",
|
|
"-x=.github/workflows/linting.yml"
|
|
]
|
|
- repo: local
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy
|
|
description: ""
|
|
entry: mypy
|
|
language: python
|
|
"types_or": [python, pyi]
|
|
args: ["--ignore-missing-imports", "--scripts-are-modules"]
|
|
require_serial: true
|
|
- repo: https://github.com/kynan/nbstripout
|
|
rev: 0.6.1
|
|
hooks:
|
|
- id: nbstripout
|
|
name: Strip notebooks output
|
|
- repo: local
|
|
hooks:
|
|
- id: pylint
|
|
name: pylint
|
|
entry: pylint openbb_terminal terminal.py tests -j 0
|
|
language: system
|
|
types: [python]
|
|
- repo: https://github.com/Yelp/detect-secrets
|
|
rev: v1.4.0
|
|
hooks:
|
|
- id: detect-secrets
|
|
args:
|
|
[
|
|
"--baseline",
|
|
".secrets.baseline",
|
|
"--exclude-files",
|
|
"cassettes/*",
|
|
"--exclude-files",
|
|
"record/*",
|
|
"--exclude-files",
|
|
"website/content/api/*",
|
|
]
|
|
exclude: package.lock.json
|
|
- repo: local
|
|
hooks:
|
|
- id: reserved_args
|
|
name: Check validity of reserved arguments
|
|
entry: python custom_pre_commit/check_reserved_args.py
|
|
language: system
|
|
types: [python]
|