gajus / gajus/eslint-plugin-flowtype
Private Properties Support
Open
- Dominant language
- JavaScript
- Stars
- 1.1k
- Forks
- 151
- PR merge metrics
- No merged PRs in 30d
Description
It would seem that private properties is not yet supported by this plugin.
## Works
```javascript
class PubChan {
#pipeline;
}
```
## Doesn't Work
```javascript
class PubChan {
#pipeline: {};
}
```

----
**update** interestingly, it would appear the `React` eslint plugin adds support for this as I can add this on any react projects but not on my others using just flow & proposal-class-properties.
Contributor guide
Assessment
This issue has not been assessed yet.