Include recently added option into rule/cache description (#4688)
This commit is contained in:
parent
78c9ad6f33
commit
82249f5ed4
|
@ -59,6 +59,10 @@
|
||||||
[SimplyDanny](https://github.com/SimplyDanny)
|
[SimplyDanny](https://github.com/SimplyDanny)
|
||||||
[#4677](https://github.com/realm/SwiftLint/issues/4677)
|
[#4677](https://github.com/realm/SwiftLint/issues/4677)
|
||||||
|
|
||||||
|
* Fix caching of `indentation_width` rule.
|
||||||
|
[SimplyDanny](https://github.com/SimplyDanny)
|
||||||
|
[#4121](https://github.com/realm/SwiftLint/issues/4121)
|
||||||
|
|
||||||
## 0.50.3: Bundle of Towels
|
## 0.50.3: Bundle of Towels
|
||||||
|
|
||||||
#### Breaking
|
#### Breaking
|
||||||
|
|
|
@ -2,7 +2,8 @@ struct IndentationWidthConfiguration: RuleConfiguration, Equatable {
|
||||||
var consoleDescription: String {
|
var consoleDescription: String {
|
||||||
return "severity: \("severity: \(severityConfiguration.consoleDescription)"), "
|
return "severity: \("severity: \(severityConfiguration.consoleDescription)"), "
|
||||||
+ "indentation_width: \(indentationWidth), "
|
+ "indentation_width: \(indentationWidth), "
|
||||||
+ "include_comments: \(includeComments)"
|
+ "include_comments: \(includeComments), "
|
||||||
|
+ "include_compiler_directives: \(includeCompilerDirectives)"
|
||||||
}
|
}
|
||||||
|
|
||||||
private(set) var severityConfiguration: SeverityConfiguration
|
private(set) var severityConfiguration: SeverityConfiguration
|
||||||
|
|
Loading…
Reference in New Issue