mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Make phpstan configuration more flexible
This commit is contained in:
parent
fd524c5f14
commit
321a34a9d3
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,6 +3,7 @@
|
||||||
.env
|
.env
|
||||||
.env.dusk.*
|
.env.dusk.*
|
||||||
!.env.dusk.example
|
!.env.dusk.example
|
||||||
|
phpstan.neon
|
||||||
.idea
|
.idea
|
||||||
/bin/
|
/bin/
|
||||||
/bootstrap/compiled.php
|
/bootstrap/compiled.php
|
||||||
|
|
8
phpstan.neon.example
Normal file
8
phpstan.neon.example
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Copy this file to "phpstan.neon" and update the parameters section as needed
|
||||||
|
|
||||||
|
includes:
|
||||||
|
- phpstan.neon.dist
|
||||||
|
|
||||||
|
parameters:
|
||||||
|
# https://phpstan.org/user-guide/output-format#opening-file-in-an-editor
|
||||||
|
editorUrl: 'phpstorm://open?file=%%file%%&line=%%line%%'
|
Loading…
Reference in a new issue