Given this line :
func _init(open_xr_analog_threshold_modifier_long: OpenXRAnalogThresholdModifier, other_type: Test) -> void:
pass
It will not break the argument list, making the lint action to fail :
gdscript-formatter lint test.gd
.\test.gd:4:max-line-length:warning: Line is too long. Found 108 characters, maximum allowed is 100
If the argument list itself goes over the line limit, it is correctly formated ;
func _init(open_xr_analog_threshold_modifier_long: OpenXRAnalogThresholdModifier, open_xr_analog_threshold_modifier_v2: OpenXRAnalogThresholdModifier) -> void:
pass
func _init(
open_xr_analog_threshold_modifier_long: OpenXRAnalogThresholdModifier,
open_xr_analog_threshold_modifier_v2: OpenXRAnalogThresholdModifier,
) -> void:
pass
Given this line :
It will not break the argument list, making the lint action to fail :
If the argument list itself goes over the line limit, it is correctly formated ;