grunt-tslint icon indicating copy to clipboard operation
grunt-tslint copied to clipboard

A Grunt plugin for tslint.

Results 12 grunt-tslint issues
Sort by recently updated
recently updated
newest added

`grunt-tslint` expects peer dependencies of v5. [v6](https://github.com/palantir/tslint/releases/tag/6.0.0) has been officially out for a few weeks now. Can we get an update to support that?

Hello Everyone! Im here to ask if it is possible to silence warnings written in the terminal when running the task? I am currently using tslint through vscode and would...

I think you might want to add travis-ci here: if I do a fresh `git clone` and `npm install` and run `npm test` it fails.

Type: Enhancement
P1

We have multiple environments and can't make sure all the developers have the same TSLint installed globally. It's better to have tslint with an exact version in the `package.json` and...

When outputFile is enabled, the current source will output just the first file's violations. This is different than the result from stdout. I opened a PR with the fix, thanks...

The options object in the tslint has the configuration property, AND an optional property named rulesDirectory. tslint will NOT read the rulesDirectory from the configuration object. You can see that...

This happens, when the "options"-Object is empty: ``` tslint: { options: {}, files: { src: [ 'src/ch.actifsource.cloud.*/**/*.ts' ] } }, ``` ``` $ grunt tslint Running "tslint:files" (tslint) task Warning:...

I updated to grunt-tslint 2.0.0 and now I get this error when linting my codebase. Let me know if you need more info and I can dig into it some...

Type: Bug

I have a grunt task setup like so: ``` javascript grunt.registerTask('pre-commit', [ 'typescript:build', 'tslint', ]); ``` When it runs tslint as part of that task, it always throws the "Cannot...

Type: Bug
P2