Skip to content

Commit fed0080

Browse files
fmeumoetr
authored andcommitted
Suppress ktlint issues without automatic fixes
1 parent 711450a commit fed0080

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

sanitizers/src/main/java/com/code_intelligence/jazzer/sanitizers/LdapInjection.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ object LdapInjection {
5050
// Characters to escape in search filter queries
5151
private const val FILTER_CHARACTERS = "*()\\\u0000"
5252

53+
@Suppress("ktlint:standard:max-line-length")
5354
@MethodHooks(
5455
// Single object lookup, possible DN injection
5556
MethodHook(

src/test/java/com/code_intelligence/jazzer/instrumentor/AfterHooksPatchTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ private fun getPatchedAfterHooksTargetInstance(classWithHooksEnabledField: Class
5252
return patchedClass.getDeclaredConstructor().newInstance() as AfterHooksTargetContract
5353
}
5454

55+
@Suppress("ktlint:standard:property-naming")
5556
class AfterHooksPatchTest {
5657
@Test
5758
fun testOriginal() {

src/test/java/com/code_intelligence/jazzer/instrumentor/BeforeHooksPatchTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ private fun getPatchedBeforeHooksTargetInstance(classWithHooksEnabledField: Clas
5252
return patchedClass.getDeclaredConstructor().newInstance() as BeforeHooksTargetContract
5353
}
5454

55+
@Suppress("ktlint:standard:property-naming")
5556
class BeforeHooksPatchTest {
5657
@Test
5758
fun testOriginal() {

src/test/java/com/code_intelligence/jazzer/instrumentor/ReplaceHooksPatchTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ private fun getPatchedReplaceHooksTargetInstance(classWithHooksEnabledField: Cla
5252
return patchedClass.getDeclaredConstructor().newInstance() as ReplaceHooksTargetContract
5353
}
5454

55+
@Suppress("ktlint:standard:property-naming")
5556
class ReplaceHooksPatchTest {
5657
@Test
5758
fun testOriginal() {

0 commit comments

Comments
 (0)