@@ -1948,48 +1948,48 @@ linters-settings:
1948
1948
# this is set to true - the append call must append either a variable
1949
1949
# assigned, called or used on the line above.
1950
1950
strict-append : true
1951
-
1951
+
1952
1952
# Allows assignments to be cuddled with variables used in calls on
1953
1953
# line above and calls to be cuddled with assignments of variables
1954
1954
# used in call on line above.
1955
1955
allow-assign-and-call : true
1956
-
1956
+
1957
1957
# Allows assignments to be cuddled with anything.
1958
1958
allow-assign-and-anything : false
1959
-
1959
+
1960
1960
# Allows cuddling to assignments even if they span over multiple lines.
1961
1961
allow-multiline-assign : true
1962
-
1962
+
1963
1963
# If the number of lines in a case block is equal to or lager than this
1964
1964
# number, the case *must* end white a newline.
1965
1965
force-case-trailing-whitespace : 0
1966
-
1966
+
1967
1967
# Allow blocks to end with comments.
1968
1968
allow-trailing-comment : false
1969
-
1969
+
1970
1970
# Allow multiple comments in the beginning of a block separated with newline.
1971
1971
allow-separated-leading-comment : false
1972
-
1972
+
1973
1973
# Allow multiple var/declaration statements to be cuddled.
1974
1974
allow-cuddle-declarations : false
1975
-
1975
+
1976
1976
# A list of call idents that everything can be cuddled with.
1977
1977
# Defaults to calls looking like locks.
1978
1978
allow-cuddle-with-calls : [ "Lock", "RLock" ]
1979
-
1979
+
1980
1980
# AllowCuddleWithRHS is a list of right hand side variables that is allowed
1981
1981
# to be cuddled with anything. Defaults to assignments or calls looking
1982
1982
# like unlocks.
1983
1983
allow-cuddle-with-rhs : [ "Unlock", "RUnlock" ]
1984
-
1984
+
1985
1985
# Causes an error when an If statement that checks an error variable doesn't
1986
1986
# cuddle with the assignment of that variable.
1987
1987
force-err-cuddling : false
1988
-
1988
+
1989
1989
# When force-err-cuddling is enabled this is a list of names
1990
1990
# used for error variables to check for in the conditional.
1991
1991
error-variable-names : [ "err" ]
1992
-
1992
+
1993
1993
# Causes an error if a short declaration (:=) cuddles with anything other than
1994
1994
# another short declaration.
1995
1995
# This logic overrides force-err-cuddling among others.
0 commit comments