JoshuaKGoldberg / TSLint.MSBuild

[Deprecated] An MSBuild task for running TSLint.
https://www.nuget.org/packages/TSLint.MSBuild
MIT License
15 stars 13 forks source link

Use quotes for paths and options in the generated command #95

Closed isc30 closed 6 years ago

isc30 commented 6 years ago

Currently you get something like:

--config tslint.json --format json file1.ts file2.ts file 3 with spaces.ts

we should use spaces everywhere we can

--config "tslint.json" --format "json" "file1.ts" "file2.ts" "file 3 with spaces.ts"