# EditorConfig - https://editorconfig.org
# Project-wide editor settings, read natively by IntelliJ IDEA (no plugin needed).
# For Eclipse please find config/ide/eclipse/linstor.importorder.
# Scope is intentionally limited to Java import ordering; see docs/import-order.md.
root = true

[*.java]
# Never collapse imports into the wildcard (.*) form - matches Checkstyle AvoidStarImport.
ij_java_class_count_to_use_import_on_demand = 999
ij_java_names_count_to_use_import_on_demand = 999
# Canonical import group order (| = blank line, * = all other, $* = all other static):
#   com.linbit.**  ->  javax.**  ->  java.**  ->  all other (3rd-party)  ->  all static (bottom)
# The blank lines (|) mirror Eclipse, which always inserts one blank line between groups.
ij_java_imports_layout = com.linbit.**, |, javax.**, |, java.**, |, *, |, $*

