Skip to content

Commit

Permalink
Fix editorconfig property for max-line-length rule (#1098)
Browse files Browse the repository at this point in the history
  • Loading branch information
romtsn authored Mar 8, 2021
1 parent c206183 commit eecd43d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,11 @@ class MaxLineLengthRule :

public val ignoreBackTickedIdentifierProperty: UsesEditorConfigProperties.EditorConfigProperty<Boolean> =
UsesEditorConfigProperties.EditorConfigProperty(
type = PropertyType(
type = PropertyType.LowerCasingPropertyType(
/* name = */ KTLINT_IGNORE_BACKTICKED_IDENTIFIER_NAME,
/* description = */ PROPERTY_DESCRIPTION,
/* parser = */ PropertyType.PropertyValueParser.BOOLEAN_VALUE_PARSER
/* parser = */ PropertyType.PropertyValueParser.BOOLEAN_VALUE_PARSER,
/* possibleValues = */ true.toString(), false.toString()
),
defaultValue = false
)
Expand Down

0 comments on commit eecd43d

Please sign in to comment.