-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Add reader file as a lint check target #226
base: master
Are you sure you want to change the base?
Conversation
I would like to show command line usage when user type just `$./bacard` So I add command-line-usage package for generate usage contents and then add implement usage in default
Our lint_ts command do not include reader file. So we cannot check lint error in reader file. So I add it. But It is hard to fix no-relative-imports rule. So I would like to this rule disable temporary, Could anyone help me 'how to fix the rule issue?' ISSUE=None
@@ -8,6 +8,7 @@ | |||
"match-default-export-name": false, | |||
"max-line-length": [true, 80], | |||
"no-banned-terms": false, | |||
"no-relative-imports": false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't want to allow no-relative-imports
.
For reference: //generator/new_parser/parser.ts
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, if this change works well, you will have to add this file to gulp.task('lint_ts').
@romandev |
Our lint_ts command do not include
reader file. So we cannot check lint error
in reader file. So I add it.
But It is hard to fix no-relative-imports rule.
So I would like to this rule disable temporary,
Could anyone help me 'how to fix the rule issue?'
ISSUE=None