# exclude files which are auto-generated by build tools exclude: | (?x)^( build| external_libs| lightgbm-python| lightgbm_r| )$ |R-package/configure$ |R-package/inst/Makevars$ |R-package/inst/Makevars.win$ |R-package/man/.*Rd$ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/adrienverge/yamllint rev: v1.35.1 hooks: - id: yamllint args: ["--strict"] - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. rev: v0.8.3 hooks: # Run the linter. - id: ruff args: ["--config", "python-package/pyproject.toml"] types_or: [python, jupyter] # Run the formatter. - id: ruff-format args: ["--config", "python-package/pyproject.toml"] types_or: [python, jupyter] - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.10.0.1 hooks: - id: shellcheck - repo: https://github.com/crate-ci/typos rev: v1.28.3 hooks: - id: typos args: ["--force-exclude"] exclude: (\.gitignore$)|(^\.editorconfig$)