Skip to content

Commit

Permalink
Add entry to CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
braker1nine committed Jul 2, 2024
1 parent 317448e commit 0be58c7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"configurations": [
{
"type": "lldb",
"request": "launch",
"sourceLanguages": [
"swift"
],
"args": [],
"cwd": "${workspaceFolder:SwiftLint}",
"name": "Debug swiftlint",
"program": "${workspaceFolder:SwiftLint}/.build/debug/swiftlint",
"preLaunchTask": "swift: Build Debug swiftlint"
},
{
"type": "lldb",
"request": "launch",
"sourceLanguages": [
"swift"
],
"args": [],
"cwd": "${workspaceFolder:SwiftLint}",
"name": "Release swiftlint",
"program": "${workspaceFolder:SwiftLint}/.build/release/swiftlint",
"preLaunchTask": "swift: Build Release swiftlint"
}
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
improvements done in the [SwiftSyntax](https://github.com/apple/swift-syntax)
library.

* Add `ignore_codingkeys` parameter to `nesting` rule.
[braker1nine](https://github.com/braker1nine)
[#5641](https://github.com/realm/SwiftLint/issues/5641)

#### Bug Fixes

* Fix a few false positives and negatives by updating the parser to support
Expand Down

0 comments on commit 0be58c7

Please sign in to comment.