-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathphpstan.neon
More file actions
27 lines (26 loc) · 891 Bytes
/
phpstan.neon
File metadata and controls
27 lines (26 loc) · 891 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
includes:
- vendor/larastan/larastan/extension.neon
parameters:
level: 5
treatPhpDocTypesAsCertain: false
paths:
- src
- tests
excludePaths:
- src/Filament/Management/Pages/CustomFieldsManagementPage.php
- src/Livewire
- tests
ignoreErrors:
# Ignore unused trait warnings for library traits meant to be consumed by package users
- identifier: trait.unused
# Filament type stubs declare view() as expecting view-string|null (CI-only, version-dependent)
-
identifier: argument.type
path: src/Filament/Integration/Components/Infolists/*
reportUnmatched: false
-
identifier: argument.type
path: src/Filament/Integration/Components/Tables/Columns/*
reportUnmatched: false
parallel:
maximumNumberOfProcesses: 3