Skip to content

Commit 5e3d794

Browse files
committed
fsharplint.json,Core/Config: move FL93 setting to last
Better to place it the last if it's the last added rule.
1 parent 64277b4 commit 5e3d794

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/FSharpLint.Core/Application/Configuration.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,6 @@ with
590590
RecursiveAsyncFunction = None
591591
AvoidTooShortNames = None
592592
IndexerAccessorStyleConsistency = None
593-
DiscourageStringInterpolationWithStringFormat = None
594593
RedundantNewKeyword = None
595594
FavourNonMutablePropertyInitialization = None
596595
FavourReRaise = None
@@ -667,6 +666,7 @@ with
667666
NoAsyncRunSynchronouslyInLibrary = None
668667
FavourNestedFunctions = None
669668
DisallowShadowing = None
669+
DiscourageStringInterpolationWithStringFormat = None
670670
}
671671

672672
// fsharplint:enable RecordFieldNames

src/FSharpLint.Core/fsharplint.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,6 @@
302302
"indentation": {
303303
"enabled": false
304304
},
305-
"discourageStringInterpolationWithStringFormat": {
306-
"enabled": false
307-
},
308305
"maxCharactersOnLine": {
309306
"enabled": false,
310307
"config": {
@@ -347,6 +344,9 @@
347344
"noAsyncRunSynchronouslyInLibrary": { "enabled": true },
348345
"favourNestedFunctions": { "enabled": false },
349346
"disallowShadowing": { "enabled": false },
347+
"discourageStringInterpolationWithStringFormat": {
348+
"enabled": false
349+
},
350350
"hints": {
351351
"add": [
352352
"not (a = b) ===> a <> b",

0 commit comments

Comments
 (0)