mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-02-03 12:49:11 +00:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
|
# 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: v3.2.0
|
||
|
hooks:
|
||
|
- id: trailing-whitespace
|
||
|
- id: end-of-file-fixer
|
||
|
- id: check-merge-conflict
|
||
|
|
||
|
# Quick syntax checkers
|
||
|
- id: check-xml
|
||
|
- id: check-yaml
|
||
|
- id: check-toml
|
||
|
- id: check-json
|
||
|
exclude: "tsconfig\\.json$"
|
||
|
|
||
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
||
|
rev: 2.3.5
|
||
|
hooks:
|
||
|
- id: editorconfig-checker
|
||
|
args: ['-disable-indentation']
|
||
|
exclude: "^(.*\\.(bat)|LICENSE)$"
|
||
|
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: checkstyle
|
||
|
name: Check Java codestyle
|
||
|
files: ".*\\.java$"
|
||
|
language: system
|
||
|
entry: ./gradlew checkstyleMain checkstyleTest
|
||
|
pass_filenames: false
|
||
|
require_serial: true
|
||
|
- id: illuaminate
|
||
|
name: Check Lua code
|
||
|
files: ".*\\.(lua|java|md)"
|
||
|
language: script
|
||
|
entry: config/pre-commit/illuaminate-lint.sh
|
||
|
pass_filenames: false
|
||
|
require_serial: true
|
||
|
|
||
|
exclude: |
|
||
|
(?x)^(
|
||
|
src/generated|
|
||
|
src/test/resources/test-rom/data/json-parsing/|
|
||
|
src/test/server-files/|
|
||
|
config/idea/
|
||
|
)
|