Skip to content

Commit

Permalink
feat: basic parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed May 30, 2024
1 parent 67da6ee commit 287cfbf
Show file tree
Hide file tree
Showing 11 changed files with 160 additions and 1,747 deletions.
37 changes: 37 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

# This is the top-most .editorconfig file (do not search in parent directories)
root = true

# 4 space indentation for all starlark files
[*.star]
indent_style = space
indent_size = 4

# 4 space indentation for all python files
[*.py]

# 2 space indentation for all yaml files
[*.yml, *.yaml]
indent_style = space
indent_size = 2

# 2 space indentation for all json files
[*.json]
indent_style = space
indent_size = 2

[*.yaml]
indent_style = space
indent_size = 2
Loading

0 comments on commit 287cfbf

Please sign in to comment.