Does not seem to do anything
See original GitHub issueHi,
I just got a fresh copy of gulp-tslint
from npm. Unfortunately, when I pipe my .ts files into it, nothing seems to happen - even running your sample code does nothing:
var gulp = require('gulp');
var tslint = require('gulp-tslint');
gulp.task('tslint', function(){
gulp.src('source.ts')
.pipe(tslint())
.pipe(tslint.report('verbose'));
});
I would at least expect some error since source.ts
does not exist on my system.
Issue Analytics
- State:
- Created 9 years ago
- Reactions:1
- Comments:23 (9 by maintainers)
Top Results From Across the Web
Avolition: Causes, Symptoms, and Treatment
Avolition is a total lack of motivation that makes it hard to get anything done. You can't start or finish even simple, everyday...
Read more >I Don't Want To Do Anything - How To Regain Motivation
Self-care tips include spending time in nature, deep breathing, mediation, listening to your favorite music, talking to the right friend, and ...
Read more >What to Do When You Don't Want to Do Anything
Everyone has times when they feel unmotivated or listless. Here are just a few things you can try if you don't feel like...
Read more >Don't Enjoy Anything Anymore? Here Are 8 Ways to ...
The loss or decrease in the ability to feel pleasure from things we once enjoyed has a name: anhedonia. While anhedonia appears to...
Read more >11 Things to Do When You Don't Want to Do Anything
When you don't feel like doing anything, often you really don't want to do anything. Nothing sounds good to you, and even well-intentioned...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’m having this issue right now. Running tslint directly works.
I’m running gulp 3.9.1, gulp-tslint 7.1.0 and tslint 5.0.0.
@FelschR @peterzagoranski @amirburbea There is a pull request (that is yet to be merged), which addresses the issue.
As TSLint v5.x introduced quite a few breaking changes, you may want to temporarily use v4.x while that PR gets sorted.