-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
36 lines (36 loc) · 915 Bytes
/
.pre-commit-config.yaml
File metadata and controls
36 lines (36 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Pre-Commit
# https://pre-commit.com
# Run formatter and more before git commit.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: detect-private-key
- id: check-merge-conflict
- repo: local
hooks:
- id: php-cs-fixer
name: php-cs-fixer
language: script
entry: vendor/bin/php-cs-fixer
args:
- fix
- --config=.php-cs-fixer.php
files: \.php$
require_serial: true
- repo: local
hooks:
- id: php-code-sniffer
name: php-code-sniffer
language: script
entry: vendor/bin/phpcs
args:
- --standard=PSR12
- --warning-severity=0
- --runtime-set
- ignore_warnings_on_exit 1
- --ignore=^admin/.*$
files: \.php$
require_serial: true