-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.dist
More file actions
45 lines (36 loc) · 1.38 KB
/
config.dist
File metadata and controls
45 lines (36 loc) · 1.38 KB
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
37
38
39
40
41
42
43
44
45
# path to phpcs "binary"
# defaults to phpcs located in vendor dir of this project
#PHPCS_BIN=/usr/bin/phpcs
# path to diffFilter "binary"
# defaults to diffFilter located in vendor dir of this project
#DIFFFILTER_BIN=/usr/bin/diffFilter
# the coding standard, you can also specify a path to your own standard here
# e. g. /path/to/my/standard/dir/
# defaults to path to coding standard within this project
#PHPCS_CODING_STANDARD=Totara
# if set to 1 only show violations for changed lines only,
# if set to 0 the complete content of the changed files is checked
# diffilter package must be installed (composer) and available
# defaults to 0
#PHPCS_CHANGED_LINES_ONLY=1
# comma-separated list of file patterns being ignored
# defaults to empty
#PHPCS_IGNORE=
# comma-seperated list of sniffs from the standard that should be used
# use `phpcs --standard=PSR1 -e` to list sniffs for your standard
# defaults to empty
#PHPCS_SNIFFS=Generic.Files.ByteOrderMark,Generic.PHP.DisallowShortOpenTag
# comma separated list of extensions to be checked (js and php are the most common one)
# defaults to php only
#PHPCS_FILE_EXTENSIONS="php,js"
# ignore warnings if set to 1
# defaults to 0
#PHPCS_IGNORE_WARNINGS=1
# encoding
# defaults to empty
#PHPCS_ENCODING=utf-8
# Run behat lint on every commit
# only checks changed behat files
# only works if npm and grunt is installed
# defaults to 1
#BEHAT_RUN_LINT=0