Skip to content

Commit 06b6dfd

Browse files
committed
updating 'dot' files from CPS Handbook
1 parent b6ef2df commit 06b6dfd

File tree

3 files changed

+20
-33
lines changed

3 files changed

+20
-33
lines changed

.editorconfig

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,19 @@ indent_size = 4
2626
indent_style = space
2727
insert_final_newline = true
2828

29-
[*.{java,scala,js,json,css}]
29+
[*.{java,scala,js,json,css,ts}]
3030
indent_size = 2
3131
indent_style = space
3232
insert_final_newline = true
3333
max_line_length = 120
3434

3535
[*.md]
36-
trim_trailing_whitespace = false
36+
max_line_length = 120
37+
insert_final_newline = true
38+
39+
[*.{sql,dd}]
40+
indent_size = 4
41+
indent_style = space
42+
end_of_line = crlf
43+
insert_final_newline = true
44+
max_line_length = 120

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,10 @@
2727
# Also if a repo is accessed in Windows via a file share from Linux, the scripts will work too
2828
*.cmd text eol=crlf
2929
*.bat text eol=crlf
30+
31+
# Treat certain files as binary
32+
*.png binary
33+
*.ttf binary
34+
*.jar binary
35+
*.pdf binary
36+
*.pptx binary

.gitignore

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -14,37 +14,9 @@
1414
# limitations under the License.
1515
#
1616
# use glob syntax.
17-
syntax: glob
18-
*.ser
19-
*.class
20-
*~
21-
*.bak
22-
#*.off
23-
*.old
24-
# eclipse conf file
25-
.settings
26-
.classpath
27-
.project
28-
.manager
29-
.scala_dependencies
30-
.scalastyle
31-
32-
# idea
17+
/.idea
18+
target
19+
.bsp
3320
.idea
3421
*.iml
35-
36-
# vs code
3722
.vscode
38-
39-
# building
40-
target
41-
build
42-
null
43-
tmp*
44-
temp*
45-
dist
46-
test-output
47-
build.log
48-
.bsp
49-
/.bloop/
50-
/.metals/

0 commit comments

Comments
 (0)