You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2026. It is now read-only.
At The Browser Company, we're fixing SwiftLint to run on Windows and have produced builds of it. This allows us to use the vscode-swiftlint extension almost out-of-the-box, except that the default configuration fails to launch SwiftLint because the executable is launched via /usr/bin/env, which does not exist on Windows.
Could we change the default to be only "swiftlint" to make it valid on all platforms? As needed, the /usr/bin/env could be prepended programatically on unix platforms in the extension code.
At The Browser Company, we're fixing
SwiftLintto run on Windows and have produced builds of it. This allows us to use thevscode-swiftlintextension almost out-of-the-box, except that the default configuration fails to launchSwiftLintbecause the executable is launched via/usr/bin/env, which does not exist on Windows.vscode-swiftlint/package.json
Lines 65 to 68 in 63b72ae
Could we change the default to be only
"swiftlint"to make it valid on all platforms? As needed, the/usr/bin/envcould be prepended programatically on unix platforms in the extension code.