-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.editorconfig
More file actions
38 lines (32 loc) · 808 Bytes
/
Copy path.editorconfig
File metadata and controls
38 lines (32 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
root = true
[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
# Prettier will use these settings
end_of_line = lf
indent_style = tab
indent_size = 4
max_line_length = 80
[*.{css,html,scss}]
max_line_length = 120
[*.{yaml,yml}]
indent_style = space
# Built/generated files
[{.devcontainer/devcontainer-lock.json,.github/release-please/manifest.json,CHANGELOG.md,dist/**,package-lock.json,types/**}]
charset = unset
end_of_line = unset
indent_size = unset
indent_style = unset
insert_final_newline = unset
max_line_length = unset
trim_trailing_whitespace = unset
# Test files
[test/{fixtures,__snapshots__}/**]
charset = unset
end_of_line = unset
indent_size = unset
indent_style = unset
insert_final_newline = unset
max_line_length = unset
trim_trailing_whitespace = unset