Skip to content

Commit

Permalink
Disable function naming ktlint rule globally
Browse files Browse the repository at this point in the history
  • Loading branch information
twyatt committed Nov 3, 2023
1 parent 153486d commit 70315f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true

ktlint_standard_blank-line-before-declaration = disabled
ktlint_standard_function-naming = disabled
ktlint_standard_function-signature = disabled
ktlint_standard_no-blank-line-in-list = disabled
ktlint_standard_no-empty-first-line-in-class-body = disabled

# `string-template-indent` is disabled because it depends on `multiline-expression-wrapping`.
ktlint_standard_multiline-expression-wrapping = disabled
ktlint_standard_string-template-indent = disabled

ktlint_standard_function-signature = disabled
ktlint_standard_no-empty-first-line-in-class-body = disabled
ktlint_standard_no-blank-line-in-list = disabled
ktlint_standard_blank-line-before-declaration = disabled
2 changes: 0 additions & 2 deletions core/src/jsMain/kotlin/Cursor.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@file:Suppress("ktlint:standard:function-naming")

package com.juul.indexeddb

import com.juul.indexeddb.external.IDBCursor
Expand Down

0 comments on commit 70315f3

Please sign in to comment.