Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{cjs,js,json,ts}]
indent_size = 2

[*.sh]
# like -i=4
indent_style = space
indent_size = 4
switch_case_indent = false

[[shell]]
# like -i=4
indent_style = space
indent_size = 4
switch_case_indent = false

[{.cxx,gradlew*,node_modules}]
ignore = true

[target/**]
ignore = true

[.direnv/**]
ignore = true

[**/Pods/**]
ignore = true

[**/node_modules/**]
ignore = true

Copy link

Copilot AI Jul 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ignore property is not a valid EditorConfig property. EditorConfig doesn't support an ignore directive.

Suggested change
[{.cxx,gradlew*,node_modules}]
ignore = true
[target/**]
ignore = true
[.direnv/**]
ignore = true
[**/Pods/**]
ignore = true
[**/node_modules/**]
ignore = true

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jul 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ignore property is not a valid EditorConfig property. EditorConfig doesn't support an ignore directive.

Suggested change
[{.cxx,gradlew*,node_modules}]
ignore = true
[target/**]
ignore = true
[.direnv/**]
ignore = true
[**/Pods/**]
ignore = true
[**/node_modules/**]
ignore = true

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jul 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ignore property is not a valid EditorConfig property. EditorConfig doesn't support an ignore directive.

Suggested change
[{.cxx,gradlew*,node_modules}]
ignore = true
[target/**]
ignore = true
[.direnv/**]
ignore = true
[**/Pods/**]
ignore = true
[**/node_modules/**]
ignore = true

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jul 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ignore property is not a valid EditorConfig property. EditorConfig doesn't support an ignore directive.

Suggested change
[{.cxx,gradlew*,node_modules}]
ignore = true
[target/**]
ignore = true
[.direnv/**]
ignore = true
[**/Pods/**]
ignore = true
[**/node_modules/**]
ignore = true

Copilot uses AI. Check for mistakes.
Loading