My cpplint is installed in ~/.local/bin/cpplint, which is in my $PATH. This extension doesn't find it, probably because it has hardcoded searchpaths
|
private findCpplintPath(settings: vscode.WorkspaceConfiguration): string { |
instead of using the $PATH variable (pretty sure it would work if it just executed cpplint instead of trying to figure out the full filename of it)
My cpplint is installed in
~/.local/bin/cpplint, which is in my $PATH. This extension doesn't find it, probably because it has hardcoded searchpathscpplint-extension/src/configuration.ts
Line 30 in cc6fab2