Exclude .git folder (#4824)

This commit is contained in:
Alexandre Alapetite 2022-11-07 01:05:09 +01:00 committed by GitHub
parent ca6c9345b2
commit f2fe9e2ff3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 0 deletions

View File

@ -1,4 +1,5 @@
*.min.js
.git/
extensions/
node_modules/
p/scripts/vendor/

View File

@ -1,3 +1,4 @@
.git/
node_modules/
p/scripts/bcrypt.min.js
p/scripts/vendor/

View File

@ -1,3 +1,4 @@
.git/
lib/phpgt/
lib/phpmailer/
node_modules/

View File

@ -1,3 +1,4 @@
.git/
extensions/
node_modules/
p/scripts/vendor/

View File

@ -13,6 +13,7 @@ extend-exclude = [
"*.po",
"*.pot",
"*.rtl.css",
".git/",
"app/i18n/cz/",
"app/i18n/de/",
"app/i18n/es/",

View File

@ -3,6 +3,7 @@
<description>Created with the PHP Coding Standard Generator. https://edorian.github.com/php-coding-standard-generator/</description>
<arg name="extensions" value="php,phtml,css,js"/>
<arg name="tab-width" value="4"/>
<exclude-pattern>./.git/</exclude-pattern>
<exclude-pattern>./lib/SimplePie/</exclude-pattern>
<exclude-pattern>./lib/phpgt/</exclude-pattern>
<exclude-pattern>./lib/phpmailer/</exclude-pattern>

View File

@ -7,6 +7,7 @@ parameters:
paths:
- .
excludePaths:
- .git/*
- lib/phpmailer/*
- lib/SimplePie/*
- node_modules/*