We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a simple gulp tasks which is throwing an error
import gulp from 'gulp' import msg from 'gulp-messenger' import run from 'run-sequence' msg.init({showPipeFile: false}) gulp.task('build', () => { run('clean:dist', 'babelify') })
It is complaining the line where run is called is not indented with a single tab, when in fact is definitely is
8:3 warning Expected indentation of 1 tab character but found 0 indent 8:3 error Bad indentation (0 instead 1) nodeca/indent
So, to help matters, tried disabling the rules for this file but thinking this should still not throw errors
I have retyped this code several times to make sure it is accurate, still throws errors
The text was updated successfully, but these errors were encountered:
Looks correct. Could you create a test repo to easy reproduce?
Also, i'd recomment migrate to native indent rule in eslint 2.0+. At least, try it.
Sorry, something went wrong.
Kirill89
No branches or pull requests
I have a simple gulp tasks which is throwing an error
It is complaining the line where run is called is not indented with a single tab, when in fact is definitely is
8:3 warning Expected indentation of 1 tab character but found 0 indent
8:3 error Bad indentation (0 instead 1) nodeca/indent
So, to help matters, tried disabling the rules for this file but thinking this should still not throw errors
I have retyped this code several times to make sure it is accurate, still throws errors
The text was updated successfully, but these errors were encountered: