| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- # See https://pre-commit.com for more information
- # See https://pre-commit.com/hooks.html for more hooks
- repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.0.1
- hooks:
- - id: trailing-whitespace
- # note: whitespace exclusions use multiline regex, see https://pre-commit.com/#regular-expressions
- # items are:
- # 1 - some file extensions
- # 2 - any file matching *test*/*expected* (for host tests, if possible use this naming pattern always)
- # 3 - any directory named 'testdata'
- # 4 - IDF monitor test data
- exclude: &whitespace_excludes |
- (?x)^(
- .+\.(md|rst|map|bin)|
- .+test.*\/.*expected.*|
- .+\/testdata\/.+|
- .+test_idf_monitor\/tests\/.+
- )$
- - id: end-of-file-fixer
- exclude: *whitespace_excludes
- - id: check-executables-have-shebangs
- - id: mixed-line-ending
- args: ['-f=lf']
- - id: double-quote-string-fixer
- - repo: https://gitlab.com/pycqa/flake8
- rev: 3.9.2
- hooks:
- - id: flake8
- args: ['--config=.flake8', '--tee', '--benchmark']
- - repo: https://github.com/pycqa/isort
- rev: 5.9.3
- hooks:
- - id: isort
- name: isort (python)
- - repo: local
- hooks:
- - id: check-executables
- name: Check File Permissions
- entry: tools/ci/check_executables.py --action executables
- language: python
- types: [executable]
- exclude: '\.pre-commit/.+'
- - id: check-executable-list
- name: Validate executable-list.txt
- entry: tools/ci/check_executables.py --action list
- language: python
- pass_filenames: false
- always_run: true
- - id: check-kconfigs
- name: Validate Kconfig files
- entry: tools/ci/check_kconfigs.py
- language: python
- files: '^Kconfig$|Kconfig.*$'
- - id: check-deprecated-kconfigs-options
- name: Check if any Kconfig Options Deprecated
- entry: tools/ci/check_deprecated_kconfigs.py
- language: python
- files: 'sdkconfig\.ci$|sdkconfig\.rename$|sdkconfig.*$'
- - id: cmake-lint
- name: Check CMake Files Format
- entry: cmakelint --linelength=120 --spaces=4 --filter=-whitespace/indent
- language: python
- additional_dependencies:
- - cmakelint==1.4.1
- files: 'CMakeLists.txt$|\.cmake$'
- exclude: '\/third_party\/'
- - id: check-codeowners
- name: Validate Codeowner File
- entry: tools/ci/check_codeowners.py ci-check
- language: python
- files: '\.gitlab/CODEOWNERS'
- pass_filenames: false
- - id: check-rules-yml
- name: Check rules.yml all rules have at lease one job applied, all rules needed exist
- entry: tools/ci/check_rules_yml.py
- language: python
- files: '\.gitlab/ci/.+\.yml|\.gitlab-ci.yml'
- pass_filenames: false
- additional_dependencies:
- - PyYAML == 5.3.1
- - id: check-generated-rules
- name: Check rules are generated (based on .gitlab/ci/dependencies/dependencies.yml)
- entry: .gitlab/ci/dependencies/generate_rules.py
- language: python
- files: '\.gitlab/ci/dependencies/.+|\.gitlab/ci/rules\.yml'
- pass_filenames: false
- additional_dependencies:
- - PyYAML == 5.3.1
- - id: mypy-check
- name: Check type annotations in python files
- entry: tools/ci/check_type_comments.py
- additional_dependencies:
- - 'mypy==0.800'
- - 'mypy-extensions==0.4.3'
- language: python
- types: [python]
- - id: check-copyright
- name: Check copyright notices
- entry: tools/ci/check_copyright.py --verbose --replace
- additional_dependencies:
- - 'comment_parser == 1.2.3'
- - 'thefuzz == 0.19.0'
- - 'thefuzz[speedup] == 0.19.0; sys_platform != "win32"'
- # don't depend on python-Levenshtein on Windows, as it requires Microsoft C++ Build Tools to install
- language: python
- files: \.(py|c|h|cpp|hpp|ld)$
- require_serial: true
- - id: check-tools-files-patterns
- name: Check tools dir files patterns
- entry: tools/ci/check_tools_files_patterns.py
- language: python
- files: '^tools/.+'
- additional_dependencies:
- - PyYAML == 5.3.1
- pass_filenames: false
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.0.1
- hooks:
- - id: file-contents-sorter
- files: 'tools\/ci\/(executable-list\.txt|mypy_ignore_list\.txt|check_copyright_ignore\.txt|check_copyright_permanent_ignore\.txt)'
|