2
0
mirror of https://github.com/frappe/frappe.git synced 2024-06-12 20:02:21 +00:00
frappe/.pre-commit-config.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
2.0 KiB
YAML
Raw Permalink Normal View History

exclude: 'node_modules|.git'
default_stages: [commit]
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: trailing-whitespace
files: "frappe.*"
exclude: ".*json$|.*txt$|.*csv|.*md|.*svg"
- id: check-yaml
- id: no-commit-to-branch
args: ['--branch', 'develop']
- id: check-merge-conflict
- id: check-ast
- id: check-json
- id: check-toml
- id: check-yaml
- id: debug-statements
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.0
hooks:
2024-04-18 09:50:48 +00:00
- id: ruff
name: "Run ruff import sorter"
args: ["--select=I", "--fix"]
2024-02-05 13:19:59 +00:00
- id: ruff
name: "Run ruff linter"
2024-02-05 13:19:59 +00:00
- id: ruff-format
2024-04-18 09:50:48 +00:00
name: "Run ruff formatter"
2022-07-02 16:29:26 +00:00
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
- id: prettier
types_or: [javascript, vue, scss]
2022-07-13 09:09:25 +00:00
# Ignore any files that might contain jinja / bundles
2022-07-02 16:29:26 +00:00
exclude: |
(?x)^(
frappe/public/dist/.*|
.*node_modules.*|
.*boilerplate.*|
frappe/www/website_script.js|
frappe/templates/includes/.*|
frappe/public/js/lib/.*|
frappe/website/doctype/website_theme/website_theme_template.scss
2022-07-02 16:29:26 +00:00
)$
2023-07-14 09:02:06 +00:00
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.44.0
hooks:
- id: eslint
types_or: [javascript]
2023-07-14 09:08:34 +00:00
args: ['--quiet']
2023-07-14 09:02:06 +00:00
# Ignore any files that might contain jinja / bundles
exclude: |
(?x)^(
frappe/public/dist/.*|
2023-07-14 09:08:34 +00:00
cypress/.*|
2023-07-14 09:02:06 +00:00
.*node_modules.*|
.*boilerplate.*|
frappe/www/website_script.js|
frappe/templates/includes/.*|
frappe/public/js/lib/.*
)$
ci:
autoupdate_schedule: weekly
skip: []
submodules: false