Skip to content

Commit 9a41d81

Browse files
committed
bug #3062 Configure .gitattributes to ignore Vitest and Playwright config files from export (Kocal)
This PR was merged into the 2.x branch. Discussion ---------- Configure .gitattributes to ignore Vitest and Playwright config files from export | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Docs? | no <!-- required for new features --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT <!-- Replace this notice by a description of your feature/bugfix. This will help reviewers and should be a good start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - For new features, provide some code snippets to help understand usage. - Features and deprecations must be submitted against branch main. - Update/add documentation as required (we can help!) - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry - Never break backward compatibility (see https://symfony.com/bc). --> Commits ------- 425e0ca Configure .gitattributes to ignore Vitest and Playwright config files from export
2 parents 8bdfff0 + 425e0ca commit 9a41d81

File tree

19 files changed

+33
-8
lines changed

19 files changed

+33
-8
lines changed

src/Autocomplete/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5+
/assets/playwright.config.ts export-ignore
6+
/assets/vitest.config.mjs export-ignore
57
/doc export-ignore
68
/phpunit.xml.dist export-ignore
79
/tests export-ignore

src/Chartjs/.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5-
/assets/vitest.config.js export-ignore
5+
/assets/playwright.config.ts export-ignore
6+
/assets/vitest.config.mjs export-ignore
67
/doc export-ignore
78
/phpunit.xml.dist export-ignore
89
/tests export-ignore

src/Cropperjs/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5+
/assets/playwright.config.ts export-ignore
6+
/assets/vitest.config.mjs export-ignore
57
/doc export-ignore
68
/phpunit.xml.dist export-ignore
79
/tests export-ignore

src/Dropzone/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5+
/assets/playwright.config.ts export-ignore
6+
/assets/vitest.config.mjs export-ignore
57
/doc export-ignore
68
/phpunit.xml.dist export-ignore
79
/tests export-ignore

src/LazyImage/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5+
/assets/vitest.config.mjs export-ignore
56
/doc export-ignore
67
/phpunit.xml.dist export-ignore
78
/tests export-ignore

src/LiveComponent/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5+
/assets/playwright.config.ts export-ignore
6+
/assets/vitest.config.mjs export-ignore
57
/doc export-ignore
68
/phpunit.xml.dist export-ignore
79
/tests export-ignore

src/Map/.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/phpunit.xml.dist export-ignore
44
/assets/src export-ignore
55
/assets/test export-ignore
6-
/assets/vitest.config.js export-ignore
6+
/assets/playwright.config.ts export-ignore
7+
/assets/vitest.config.mjs export-ignore
78
/doc export-ignore
89
/tests export-ignore
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/assets/src export-ignore
22
/assets/test export-ignore
3-
/assets/vitest.config.js export-ignore
3+
/assets/playwright.config.ts export-ignore
4+
/assets/vitest.config.mjs export-ignore
45
/tests export-ignore
56
/.git* export-ignore
67
/phpunit.xml.dist export-ignore
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/assets/src export-ignore
22
/assets/test export-ignore
3-
/assets/vitest.config.js export-ignore
3+
/assets/playwright.config.ts export-ignore
4+
/assets/vitest.config.mjs export-ignore
45
/tests export-ignore
56
/.git* export-ignore
67
/phpunit.xml.dist export-ignore

src/Notify/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
/.symfony.bundle.yaml export-ignore
33
/assets/src export-ignore
44
/assets/test export-ignore
5+
/assets/playwright.config.ts export-ignore
6+
/assets/vitest.config.mjs export-ignore
57
/doc export-ignore
68
/phpunit.xml.dist export-ignore
79
/tests export-ignore

0 commit comments

Comments
 (0)