forked from rsanzante/drupalcampspain2023-behat-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
25 lines (24 loc) · 881 Bytes
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
parameters:
level: 8
fileExtensions:
- php
- module
- inc
- theme
- install
- profile
scanDirectories:
- web/modules/contrib
- web/themes/contrib
- web/core
paths:
- web/modules/custom
- web/themes/custom
reportUnmatchedIgnoredErrors: false
ignoreErrors:
- message: '#.*return type has no value type specified.*#'
- message: '#.*has parameter .* with no type specified.*#'
- message: '#.*has no return type specified.*#'
- message: '#.*has parameter .* with no value type specified.*#'
# new static() is a best practice in Drupal, so we cannot fix that. See https://www.drupal.org/docs/develop/development-tools/phpstan/handling-unsafe-usage-of-new-static#s-ignoring-the-issue
- message: '#^Unsafe usage of new static#'