// foo.swift
enum Foo {
case foo
}
with the following .swift-format config file:
i get this error:
Sources/project/foo.swift:6:8: error: [AlwaysUseLowerCamelCase] rename the enum case 'x86_64' using lowerCamelCase
when i add an empty rules object to it, the error goes away:
// .swift-format {}