-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
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.
Lines 65 to 68 in 63b72ae
"default": [ | |
"/usr/bin/env", | |
"swiftlint" | |
], |
"default": [
"/usr/bin/env",
"swiftlint"
],
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.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working