- add end-to-end test for identity controller
- add IdentityEndpoint
- add end-to-end test for node controller
- add NodeEndpoint
- update test container sql files
- add end-to-end test for device controller
- add DeviceEndpoint
- add identity in first-device.data
- add .data to .editorconfig
- update test container sql files
- add end-to-end test for type controller
- add TypeEndpoint
- update test container sql files
- prepare for end-to-end test
- add sql files for postgres container
- update to build.gradle.kts
- add integration test dependencies
- update hlaeja dependency after name changes
- update catalog version
- move files from test to integration test
- valid-private-key.pem
- application.yml
- ApplicationTest
39 lines
901 B
INI
39 lines
901 B
INI
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_size = 4
|
|
indent_style = space
|
|
insert_final_newline = true
|
|
max_line_length = 120
|
|
tab_width = 4
|
|
|
|
[*.{http,json,md,sh,sql,xml,xsd,yaml,yml}]
|
|
max_line_length = 1024
|
|
indent_size = 2
|
|
tab_width = 2
|
|
|
|
[*.data]
|
|
max_line_length = 1024
|
|
insert_final_newline = false
|
|
|
|
[*.bat]
|
|
end_of_line = crlf
|
|
|
|
[*.pem]
|
|
max_line_length = 64
|
|
insert_final_newline = false
|
|
|
|
# noinspection EditorConfigKeyCorrectness
|
|
[*.{kt,kts}]
|
|
ij_kotlin_packages_to_use_import_on_demand = unset
|
|
ij_kotlin_allow_trailing_comma_on_call_site = true
|
|
ij_kotlin_allow_trailing_comma = true
|
|
ktlint_standard_import-ordering = disabled
|
|
ktlint_standard_no-empty-first-line-in-class-body = disabled
|
|
ktlint_standard_function-signature = disabled
|
|
ktlint_standard_parameter-list-wrapping = disabled
|
|
ktlint_standard_multiline-expression-wrapping = disabled
|
|
ktlint_standard_string-template-indent = disabled
|