Skip to content

Commit fdcc046

Browse files
Merge pull request #2399 from Evarisk/feat/2398-render-media-block-control
#2398 [Control] feat: integrate saturne_render_media_block in control card and questions
2 parents 858ccb6 + 0d09f73 commit fdcc046

14 files changed

Lines changed: 2865 additions & 582 deletions

File tree

.gitattributes

Lines changed: 62 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,71 @@
11
# Set default behaviour, in case users don't have core.autocrlf set.
2+
# More info: https://help.github.com/articles/dealing-with-line-endings
23
* text=auto
34

4-
5-
# Explicitly declare text files we want to always be normalized and converted
5+
# Explicitly declare text files we want to always be normalized and converted
66
# to native line endings on checkout.
7+
8+
# PHP — PSR-12
79
*.php text eol=lf
8-
*.sql text eol=lf
9-
*.htm text eol=lf
10+
11+
# Web
1012
*.html text eol=lf
11-
*.js text eol=lf
12-
*.css text eol=lf
13+
*.css text eol=lf
14+
*.scss text eol=lf
15+
*.js text eol=lf
16+
*.json text eol=lf
17+
*.svg text eol=lf
18+
*.map text eol=lf
19+
20+
# Config
21+
*.yml text eol=lf
22+
*.yaml text eol=lf
23+
*.xml text eol=lf
24+
*.neon text eol=lf
25+
*.sql text eol=lf
26+
27+
# Docs
28+
*.md text eol=lf
29+
*.txt text eol=lf
30+
*.sh text eol=lf
1331
*.lang text eol=lf
14-
*.txt text eol=lf
15-
*.md text eol=lf
16-
*.bat text eol=lf
1732

1833
# Denote all files that are truly binary and should not be modified.
19-
*.ico binary
20-
*.png binary
21-
*.jpg binary
22-
*.odt binary
23-
*.odf binary
34+
*.ico binary
35+
*.jpeg binary
36+
*.jpg binary
37+
*.png binary
38+
*.gif binary
39+
*.pdf binary
40+
*.woff binary
41+
*.woff2 binary
42+
*.ttf binary
43+
*.eot binary
44+
*.zip binary
45+
*.odf binary
46+
*.odt binary
47+
48+
# Export ignores to generate clean production tarballs
49+
/.github export-ignore
50+
/.tx export-ignore
51+
/.phan export-ignore
52+
/dev export-ignore
53+
/doc export-ignore
54+
/tests export-ignore
55+
.editorconfig export-ignore
56+
.gitattributes export-ignore
57+
.gitignore export-ignore
58+
.jshintignore export-ignore
59+
.jshintrc export-ignore
60+
.phpcs.xml export-ignore
61+
CLAUDE.md export-ignore
62+
composer.json export-ignore
63+
composer.lock export-ignore
64+
gulpfile.js export-ignore
65+
modulebuilder.txt export-ignore
66+
package.json export-ignore
67+
package-lock.json export-ignore
68+
phpstan.baseline.neon export-ignore
69+
phpstan.neon export-ignore
70+
RELEASE_NOTES.md export-ignore
71+
RELEASE_NOTES_TEMPLATE.md export-ignore

.gitignore

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,29 @@
1+
# Generated binaries
2+
/build/*.zip
3+
/bin/*.zip
4+
# Doxygen generated documentation
5+
/build/doxygen/doxygen_warnings.log
6+
/doc/code/doxygen
7+
# Composer managed dependencies
8+
/vendor
9+
/dev/bin
10+
# PHPStan cache
11+
/.github/tmp/phpstan
12+
# Phan cache
13+
/.phan/output
14+
# PHPdocumentor generated files
15+
/build/phpdoc
16+
/doc/code/phpdoc
17+
# Sphinx generated files
18+
/doc/user/build
19+
/.settings/
20+
/.buildpath
21+
/.project
22+
# Other
23+
*.back
24+
/.editorconfig
25+
/.gitattributes
126
node_modules
27+
/.idea
228
npm-debug.log
3-
.idea
4-
vendor
5-
.editorconfig
6-
.gitattributes
7-
package-lock.json
829
scratch/

0 commit comments

Comments
 (0)