Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit b013dd7

Browse files
committed
Update StyleCI fixers and other supplementary files
1 parent 16a0487 commit b013dd7

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

.codeclimate.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ ratings:
3737
- "**.py"
3838
- "**.rb"
3939
exclude_paths:
40+
- "resources/*"
4041
- "build/*"
4142
- "tests/*"
4243
- "vendor/*"

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
build/
2-
vendor/
3-
node_modules/
1+
/build
2+
/vendor
3+
/node_modules
44
composer.lock
55
composer.phar
66
phpunit.xml

.scrutinizer.yml

+6
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ checks:
112112
filter:
113113
excluded_paths:
114114
- 'build/*'
115+
- 'resources/*'
115116
- 'tests/*'
116117
- 'vendor/*'
117118

@@ -135,6 +136,7 @@ tools:
135136
filter:
136137
excluded_paths:
137138
- 'build/*'
139+
- 'resources/*'
138140
- 'tests/*'
139141
- 'vendor/*'
140142

@@ -144,6 +146,7 @@ tools:
144146
enabled: true
145147
excluded_dirs:
146148
- 'build'
149+
- 'resources'
147150
- 'tests'
148151
- 'vendor'
149152

@@ -153,6 +156,7 @@ tools:
153156
enabled: true
154157
excluded_dirs:
155158
- 'build'
159+
- 'resources'
156160
- 'tests'
157161
- 'vendor'
158162

@@ -171,6 +175,7 @@ tools:
171175
excluded_paths:
172176
- 'build/*'
173177
- 'tests/*'
178+
- 'resources/*'
174179
- 'vendor/*'
175180

176181

@@ -179,6 +184,7 @@ tools:
179184
enabled: true
180185
excluded_dirs:
181186
- 'build'
187+
- 'resources'
182188
- 'tests'
183189
- 'vendor'
184190

.styleci.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
preset: recommended
2-
risky: false
3-
linting: true
42

53
enabled:
6-
- not_operator_with_successor_space
4+
- dir_constant
5+
- ereg_to_preg
6+
- mb_str_functions
77
- no_short_echo_tag
8+
- strict_comparison
9+
- phpdoc_link_to_see
10+
- no_php4_constructor
11+
- unalign_double_arrow
12+
- length_ordered_imports
13+
- modernize_types_casting
14+
- return_type_declaration
15+
- not_operator_with_successor_space
816

917
disabled:
10-
- ordered_imports
11-
- phpdoc_no_package
1218
- align_double_arrow
19+
- alpha_ordered_imports

0 commit comments

Comments
 (0)