Skip to content

Releases: vknabel/vscode-swiftlint

v1.8.4

08 Jun 11:13
e61cfd5
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.8.1...v1.8.4

1.8.4-beta.3

16 Sep 11:11
Compare
Choose a tag to compare
1.8.4-beta.3 Pre-release
Pre-release

Windows different shell execution

16 Sep 10:06
Compare
Choose a tag to compare
Pre-release

Windows default path Pre-release

16 Aug 06:37
Compare
Choose a tag to compare
Pre-release
1.8.4-beta.1

1.8.4-beta.1

Windows default path

11 Aug 21:01
Compare
Choose a tag to compare
Windows default path Pre-release
Pre-release
  • fix: default swiftlint.path value is invalid on Windows #67

1.8.0

12 Dec 11:41
Compare
Choose a tag to compare

1.7.3

12 Dec 10:44
Compare
Choose a tag to compare
  • fix: Unrecognized arguments: --format #47 #55
  • fix: No lintable files found at paths: '' #54
  • fix: Unexpected end of JSON input #53

--format and building

09 Jun 16:31
Compare
Choose a tag to compare
  • Added: swiftlint.additionalParameters to enable --format fixes #43
  • Added: build SwiftLint if needed #42

Autocorrect and fix

15 Feb 11:32
Compare
Choose a tag to compare
  • New commands to fix autocorrect workspace and file issues swiftlint.fixWorkspace and swiftlint.fixDocument #40

To automatically fix all issues within a document on save, add the following to your .vscode/settings.json:

{
  "editor.codeActionsOnSave": {
    "source.fixAll": true
  }
}

Full Changelog: 1.4.6...v1.5.0

Banned some configs from workspace settings

15 Mar 18:43
Compare
Choose a tag to compare

Fixes vulnerability which allowed malicous workspaces to execute code when opened by providing. Now the vulnerable configs cannot be overrided in workspaces anymore: swiftlint.path. Reported by @Ry0taK.