mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) e1c8cd779b
			
		
	
	e1c8cd779b
	
	
	
		
			
			* Chore(deps): Bump bootstrap from 5.3.7 to 5.3.8 in /src-ui Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.3.7 to 5.3.8. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](https://github.com/twbs/bootstrap/compare/v5.3.7...v5.3.8) --- updated-dependencies: - dependency-name: bootstrap dependency-version: 5.3.8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Upgrades backend Bootstrap to 5.3.8 as well --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com>
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # This file configures pre-commit hooks.
 | |
| # See https://pre-commit.com/ for general information
 | |
| # See https://pre-commit.com/hooks.html for a listing of possible hooks
 | |
| repos:
 | |
|   # General hooks
 | |
|   - repo: https://github.com/pre-commit/pre-commit-hooks
 | |
|     rev: v5.0.0
 | |
|     hooks:
 | |
|       - id: check-docstring-first
 | |
|       - id: check-json
 | |
|         exclude: "tsconfig.*json"
 | |
|       - id: check-yaml
 | |
|         args:
 | |
|           - "--unsafe"
 | |
|       - id: check-toml
 | |
|       - id: check-executables-have-shebangs
 | |
|       - id: end-of-file-fixer
 | |
|         exclude_types:
 | |
|           - svg
 | |
|           - pofile
 | |
|         exclude: "(^LICENSE$|^src/documents/static/bootstrap.min.css$)"
 | |
|       - id: mixed-line-ending
 | |
|         args:
 | |
|           - "--fix=lf"
 | |
|       - id: trailing-whitespace
 | |
|         exclude_types:
 | |
|           - svg
 | |
|       - id: check-case-conflict
 | |
|       - id: detect-private-key
 | |
|   - repo: https://github.com/codespell-project/codespell
 | |
|     rev: v2.4.1
 | |
|     hooks:
 | |
|       - id: codespell
 | |
|         additional_dependencies: [tomli]
 | |
|         exclude_types:
 | |
|           - pofile
 | |
|           - json
 | |
|   # See https://github.com/prettier/prettier/issues/15742 for the fork reason
 | |
|   - repo: https://github.com/rbubley/mirrors-prettier
 | |
|     rev: 'v3.6.2'
 | |
|     hooks:
 | |
|       - id: prettier
 | |
|         types_or:
 | |
|           - javascript
 | |
|           - ts
 | |
|           - markdown
 | |
|         additional_dependencies:
 | |
|           - prettier@3.3.3
 | |
|           - 'prettier-plugin-organize-imports@4.1.0'
 | |
|   # Python hooks
 | |
|   - repo: https://github.com/astral-sh/ruff-pre-commit
 | |
|     rev: v0.12.2
 | |
|     hooks:
 | |
|       - id: ruff-check
 | |
|       - id: ruff-format
 | |
|   - repo: https://github.com/tox-dev/pyproject-fmt
 | |
|     rev: "v2.6.0"
 | |
|     hooks:
 | |
|       - id: pyproject-fmt
 | |
|   # Dockerfile hooks
 | |
|   - repo: https://github.com/AleksaC/hadolint-py
 | |
|     rev: v2.12.1b3
 | |
|     hooks:
 | |
|       - id: hadolint
 | |
|   # Shell script hooks
 | |
|   - repo: https://github.com/lovesegfault/beautysh
 | |
|     rev: v6.2.1
 | |
|     hooks:
 | |
|       - id: beautysh
 | |
|         additional_dependencies:
 | |
|           - setuptools
 | |
|         args:
 | |
|           - "--tab"
 | |
|   - repo: https://github.com/shellcheck-py/shellcheck-py
 | |
|     rev: "v0.10.0.1"
 | |
|     hooks:
 | |
|       - id: shellcheck
 | |
|   - repo: https://github.com/google/yamlfmt
 | |
|     rev: v0.17.2
 | |
|     hooks:
 | |
|       - id: yamlfmt
 | |
|         exclude: "^src-ui/pnpm-lock.yaml"
 |