Skip to content

Commit

Permalink
chore: add temp exclusions in kotlin script checks
Browse files Browse the repository at this point in the history
  • Loading branch information
GangGreenTemperTatum committed Dec 24, 2024
1 parent 2ef107f commit a6e781d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{kt,kts}]
indent_size=4
insert_final_newline=true
max_line_length=120
max_line_length=120
# Common kotlin rules
ktlint_code_style = official

[*.kts]
# Disable specific rules for Kotlin script files
ktlint_standard_no-unused-imports = disabled
ktlint_standard_multiline-expression-wrapping = disabled
ktlint_standard_wrapping = disabled
ktlint_standard_string-template-indent = disabled
ktlint_standard_final-newline = disabled

0 comments on commit a6e781d

Please sign in to comment.