This commit disables clang_format for all Java files. The main reason is to ensure that formatting is managed by jdtls, which adheres to a widely accepted standard. Given that Java developers have a strong preference for this approach, it makes more sense to let a Java-specific language server handle the formatting rather than relying on a more general-purpose formatter like clang_format.
This commit disables
clang_format
for all Java files. The main reason is to ensure that formatting is managed byjdtls
, which adheres to a widely accepted standard. Given that Java developers have a strong preference for this approach, it makes more sense to let a Java-specific language server handle the formatting rather than relying on a more general-purpose formatter likeclang_format
.