Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8933d0b3 authored by Michael Bestas's avatar Michael Bestas Committed by Jochen Sprickerhof
Browse files

Add editorconfig support

Change-Id: I8ed1ebc61069226c6dc28a590d0df20b42ca00d1
parent 59d054e6
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+24 −0
Original line number Diff line number Diff line
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{kt,kts}]
indent_size = 4
max_line_length = 100

[res/values-*/strings.xml]
insert_final_newline = unset
trim_trailing_whitespace = unset

[*.md]
trim_trailing_whitespace = false

[gradlew.bat]
charset = latin1
end_of_line = crlf
insert_final_newline = false

[.editorconfig]
ij_editorconfig_spaces_around_assignment_operators = true
+9 −1
Original line number Diff line number Diff line
@@ -12,6 +12,14 @@ buildscript {
    }
}

plugins {
    id("org.ec4j.editorconfig") version "0.0.3"
}

editorconfig {
    excludes = ['external/**', 'metadata/**', '**/*.webp']
}

allprojects {
    repositories {
        google()