File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 10
10
DOCKER_COMPOSE : ' {{.TASK_DOCKER_COMPOSE | default "docker compose"}}'
11
11
12
12
# We're not yet ready to normalize config files …
13
- YAML_FILES_GLOB : " Taskfile.yml .github/workflows/**.{yml,yaml}"
13
+ YAML_FILES_GLOB : " Taskfile.yml .github/workflows/**.{yml,yaml} phpstan.dist.neon "
14
14
15
15
tasks :
16
16
site:update :
@@ -163,7 +163,7 @@ tasks:
163
163
cmds :
164
164
- task : compose
165
165
vars :
166
- COMPOSE_ARGS : run --rm prettier {{.YAML_FILES_GLOB}} --write
166
+ COMPOSE_ARGS : run --rm prettier --parser yaml {{.YAML_FILES_GLOB}} --write
167
167
silent : true
168
168
169
169
coding-standards:yaml:check :
@@ -172,7 +172,7 @@ tasks:
172
172
- task : coding-standards:yaml:apply
173
173
- task : compose
174
174
vars :
175
- COMPOSE_ARGS : run --rm prettier {{.YAML_FILES_GLOB}} --check
175
+ COMPOSE_ARGS : run --rm prettier --parser yaml {{.YAML_FILES_GLOB}} --check
176
176
silent : true
177
177
178
178
code-analysis :
Original file line number Diff line number Diff line change @@ -6,3 +6,12 @@ parameters:
6
6
- public/
7
7
- src/
8
8
- tests/
9
+
10
+ ignoreErrors :
11
+ - messages :
12
+ - " #Method .+ has parameter .+ with no value type specified in iterable type array. #"
13
+ - " #Method .+ return type has no value type specified in iterable type array. #"
14
+ - " #Method .+ return type has no value type specified in iterable type iterable. #"
15
+ - " #Property .+ type has no value type specified in iterable type array. #"
16
+ - messages :
17
+ - " #Class .+ implements generic interface .+ but does not specify its types : # "
You can’t perform that action at this time.
0 commit comments