-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy path.editorconfig
More file actions
48 lines (39 loc) · 1.45 KB
/
.editorconfig
File metadata and controls
48 lines (39 loc) · 1.45 KB
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
39
40
41
42
43
44
45
46
47
48
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 100
trim_trailing_whitespace = true
# Some markdown files are additionally checked using markdownlint.
[*.md]
indent_size = unset
max_line_length = 150
# Some markdown files are additionally checked using markdownlint.
[docs/**/*.mdx]
indent_size = unset
max_line_length = unset
trim_trailing_whitespace = unset
[{*.css,*.html,*.json,*.sh,*.toml,*.yml,*.yaml,cargo-simtest,*.mjs,*.ts,*.tsx,*.js,*.jq}]
indent_size = 2
max_line_length = 150
[Dockerfile*]
max_line_length = 120
[Cargo.toml]
max_line_length = 140
[crates/walrus-orchestrator/src/monitor.rs]
indent_size = unset
# Ignore paths
[{.git/**/*,**/*.lock,docs/site/pnpm-lock.yaml,**/*.lock,**/Move.toml,LICENSE,docs/devnet-public/glossary.md,crates/walrus-orchestrator/assets/*,.editorconfig,venv/**/*,crates/walrus-service/*.html,crates/walrus-upload-relay/*.html,crates/walrus-upload-relay/*.yaml,crates/walrus-service/*.yaml,docs/theme/**/*,.github/workflows/issues-monitor.yaml,scripts/simtest/seed-search.py,docs/site/src/components/ImportContent/utils.js,docs/site/static/glossary.json}]
charset = unset
end_of_line = unset
indent_size = unset
indent_style = unset
insert_final_newline = unset
max_line_length = unset
trim_trailing_whitespace = unset