This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 889
[completed-docs] exported variable parsed as internal variable #2335
Comments
I'll take a look after #2415 goes in. |
This bug is caused by the fact that the
I've made a fix for this, but it requires some changes that I've made in PR #2911 to allow the modifiers from a different node to be used. Once that PR is merged, I'll submit another PR for this bug. |
Merged
4 tasks
Bump @reduckted - still interested in a followup PR? |
Doh! Totally forgot about this. Yes, I'll take a look into it again. :) |
Hmm, looks like I already fixed this in #2950. ¯\_(ツ)_/¯ Edit: Which, for the record, was released in v5.6.0 |
Looking at the tests added in that PR I can confirm that this is fixed. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Bug Report
Node.js API / VSCode / grunt-tslint / Atom / Visual Studio / etcTypeScript code being linted
with
tslint.json
configuration:Actual behavior
"all"
: lint error"exported"
: no lint error"internal"
: lint errorExpected behavior
"all"
: lint error"exported"
: lint error"internal"
: no lint errorexported
variable is being parsed asinternal
. reproAlso, documented
visibilities
type is inconsistent:schema:
enum
example:
array enum
implementation:
array enum
perhaps #629 should consider docs as well.
The text was updated successfully, but these errors were encountered: