Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upNothing happens #910
Comments
This comment has been minimized.
This comment has been minimized.
|
Currently, Unfortunately I don't think it will be possible to support typescript files until they are well supported in I'm going to close this issue, but please feel free to continue the conversation! |
Flet
closed this
Jun 8, 2017
This comment has been minimized.
This comment has been minimized.
|
Actually, it's possible to use Install these two packages: npm install typescript-eslint-parser eslint-plugin-typescriptThen tell standard to check all
If you want, you can put some of that config into {
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
}
}With that config in place, you can run |
This comment has been minimized.
This comment has been minimized.
|
I just sent a PR to add these instructions to the readme: #928 |
rochapablo commentedJun 2, 2017
When I run
$ standardno message output is retuned;This is my config inside package.json:
If I remove the ignore, still got nothing; but removing all config only my .js files it's validate. But what I need it's validate my .ts files.
I'm working with
Is there anyone who could guide me here?