Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • e7e64b2ca385ed375c62d38726189d7231d38076
  • 18.0 par défaut protégée
2 résultats

.pre-commit-config.yaml

Blame
  • .pre-commit-config.yaml 3,91 Kio
    exclude: |
      (?x)
      # NOT INSTALLABLE ADDONS
      # END NOT INSTALLABLE ADDONS
      # Files and folders generated by bots, to avoid loops
      ^setup/|/static/description/index\.html$|
      # We don't want to mess with tool-generated files
      .svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/|^eslint.config.cjs|^prettier.config.cjs|
      # Maybe reactivate this when all README files include prettier ignore tags?
      ^README\.md$|
      # Library files can have extraneous formatting (even minimized)
      /static/(src/)?lib/|
      # Repos using Sphinx to generate docs don't need prettying
      ^docs/_templates/.*\.html$|
      # Don't bother non-technical authors with formatting issues in docs
      readme/.*\.(rst|md)$|
      # Ignore build and dist directories in addons
      /build/|/dist/|
      # Ignore test files in addons
      /tests/samples/.*|
      # You don't usually want a bot to modify your legal texts
      (LICENSE.*|COPYING.*)
    default_language_version:
      python: python3
      node: "22.9.0"
    repos:
      - repo: local
        hooks:
          # These files are most likely copier diff rejection junks; if found,
          # review them manually, fix the problem (if needed) and remove them
          - id: forbidden-files
            name: forbidden files
            entry: found forbidden files; remove them
            language: fail
            files: "\\.rej$"
          - id: en-po-files
            name: en.po files cannot exist
            entry: found a en.po file
            language: fail
            files: '[a-zA-Z0-9_]*/i18n/en\.po$'
      - repo: https://github.com/oca/maintainer-tools
        rev: bf9ecb9938b6a5deca0ff3d870fbd3f33341fded
        hooks:
          # update the NOT INSTALLABLE ADDONS section above
          - id: oca-update-pre-commit-excluded-addons
          - id: oca-fix-manifest-website
            args: ["https://le-filament.com"]
      - repo: https://github.com/OCA/odoo-pre-commit-hooks
        rev: v0.0.33
        hooks:
          - id: oca-checks-odoo-module
          - id: oca-checks-po
            args:
              - --disable=po-pretty-format
      - repo: local
        hooks:
          - id: prettier
            name: prettier (with plugin-xml)
            entry: prettier
            exclude: ^(data/.*|templates/.*)$
            args:
              - --write
              - --list-different
              - --ignore-unknown
            types: [text]
            files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
            language: node
            additional_dependencies:
              - "prettier@3.3.3"
              - "@prettier/plugin-xml@3.4.1"