Aggiunta psalm per migliorare lo sviluppo
This commit is contained in:
parent
98c5bf135d
commit
a53373a2d8
|
@ -402,7 +402,7 @@ function release(done) {
|
||||||
|
|
||||||
archive.pipe(output);
|
archive.pipe(output);
|
||||||
|
|
||||||
// Individuazione dei file da aggiungere
|
// Individuazione dei file da aggiungere e escludere
|
||||||
glob([
|
glob([
|
||||||
'**/*',
|
'**/*',
|
||||||
'!checksum.json',
|
'!checksum.json',
|
||||||
|
@ -417,6 +417,7 @@ function release(done) {
|
||||||
'files/temp/.gitkeep',
|
'files/temp/.gitkeep',
|
||||||
'!logs/**',
|
'!logs/**',
|
||||||
'!config.inc.php',
|
'!config.inc.php',
|
||||||
|
'!psalm.xml',
|
||||||
'!update/structure.php',
|
'!update/structure.php',
|
||||||
'!**/*.(lock|phar|log|zip|bak|jar|txt)',
|
'!**/*.(lock|phar|log|zip|bak|jar|txt)',
|
||||||
'!**/~*',
|
'!**/~*',
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<psalm
|
||||||
|
errorLevel="7"
|
||||||
|
resolveFromConfigFile="true"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns="https://getpsalm.org/schema/config"
|
||||||
|
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
||||||
|
>
|
||||||
|
<projectFiles>
|
||||||
|
<directory name="src" />
|
||||||
|
<ignoreFiles>
|
||||||
|
<directory name="vendor" />
|
||||||
|
</ignoreFiles>
|
||||||
|
</projectFiles>
|
||||||
|
</psalm>
|
Loading…
Reference in New Issue