Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/belav/tslint-msbuild-path
TSLint formatter that formats output so it can show up as errors for msbuild.
https://github.com/belav/tslint-msbuild-path
Last synced: about 2 months ago
JSON representation
TSLint formatter that formats output so it can show up as errors for msbuild.
- Host: GitHub
- URL: https://github.com/belav/tslint-msbuild-path
- Owner: belav
- License: mit
- Created: 2016-12-06T21:33:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-06T22:00:02.000Z (about 8 years ago)
- Last Synced: 2024-11-13T16:19:37.673Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# tslint-msbuild-path
> TsLint formatter that outputs errors in a format msbuild expects so they can be navigatable in visual studio.
The errors reported by tslint in visual studio cannot be quickly navigated to. This formatter outputs the format that msbuild expects so you can navigate to them through the error list and by clicking F8 to jump to the next error.
### grunt-tslint
Basic example that includes all .ts files and excludes any d.ts files.
````js
grunt.initConfig({
tslint: {
options: {
formatter: "tslint-msbuild-path"
},
files: {
["**/*.ts", "!**.*.d.ts"]
}
}
});
````
### Project.csprojTo get grunt to run as part of your visual studio build, you can add the following to your .csproj file
````xml
````