Browse code

Adjust .gitignore and add an .editorconfig file

Benjamin Roth authored on19/01/2023 22:49:32
Showing2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+# EditorConfig is awesome: http://EditorConfig.org
2
+
3
+# top-most EditorConfig file
4
+root = true
5
+
6
+# Unix-style newlines with a newline ending every file
7
+[*]
8
+end_of_line = lf
9
+insert_final_newline = true
10
+trim_trailing_whitespace = true
11
+
12
+[*.{php,twig,yml}]
13
+indent_style = space
14
+indent_size = 4
15
+
16
+[*.{html5,svg,min.css,min.js}]
17
+insert_final_newline = false
... ...
@@ -4,7 +4,11 @@
4 4
 /vendor/
5 5
 
6 6
 # PhpUnit
7
+/.phpunit.result.cache
7 8
 /phpunit.xml
8 9
 
10
+# Tools
11
+/tools/*/vendor
12
+
9 13
 # IDE
10 14
 /.idea/