@@ -1923,48 +1923,48 @@ linters-settings:
1923
1923
# this is set to true - the append call must append either a variable
1924
1924
# assigned, called or used on the line above.
1925
1925
strict-append : true
1926
-
1926
+
1927
1927
# Allows assignments to be cuddled with variables used in calls on
1928
1928
# line above and calls to be cuddled with assignments of variables
1929
1929
# used in call on line above.
1930
1930
allow-assign-and-call : true
1931
-
1931
+
1932
1932
# Allows assignments to be cuddled with anything.
1933
1933
allow-assign-and-anything : false
1934
-
1934
+
1935
1935
# Allows cuddling to assignments even if they span over multiple lines.
1936
1936
allow-multiline-assign : true
1937
-
1937
+
1938
1938
# If the number of lines in a case block is equal to or lager than this
1939
1939
# number, the case *must* end white a newline.
1940
1940
force-case-trailing-whitespace : 0
1941
-
1941
+
1942
1942
# Allow blocks to end with comments.
1943
1943
allow-trailing-comment : false
1944
-
1944
+
1945
1945
# Allow multiple comments in the beginning of a block separated with newline.
1946
1946
allow-separated-leading-comment : false
1947
-
1947
+
1948
1948
# Allow multiple var/declaration statements to be cuddled.
1949
1949
allow-cuddle-declarations : false
1950
-
1950
+
1951
1951
# A list of call idents that everything can be cuddled with.
1952
1952
# Defaults to calls looking like locks.
1953
1953
allow-cuddle-with-calls : [ "Lock", "RLock" ]
1954
-
1954
+
1955
1955
# AllowCuddleWithRHS is a list of right hand side variables that is allowed
1956
1956
# to be cuddled with anything. Defaults to assignments or calls looking
1957
1957
# like unlocks.
1958
1958
allow-cuddle-with-rhs : [ "Unlock", "RUnlock" ]
1959
-
1959
+
1960
1960
# Causes an error when an If statement that checks an error variable doesn't
1961
1961
# cuddle with the assignment of that variable.
1962
1962
force-err-cuddling : false
1963
-
1963
+
1964
1964
# When force-err-cuddling is enabled this is a list of names
1965
1965
# used for error variables to check for in the conditional.
1966
1966
error-variable-names : [ "err" ]
1967
-
1967
+
1968
1968
# Causes an error if a short declaration (:=) cuddles with anything other than
1969
1969
# another short declaration.
1970
1970
# This logic overrides force-err-cuddling among others.
0 commit comments