## Context Type checking and options to set class methods as private, for example, are nice to have ## Expected result - [ ] type checking - [ ] private methods - [ ] props and state type checks - [ ] remove eslint `"no-underscore-dangle": "off"` rule to prevent use of underscores and use private keyword from typescript instead - [ ] remove prop-types and replace with interface. See [typescript docs](https://www.typescriptlang.org/docs/handbook/react-&-webpack.html#write-some-code) ## Current result Plain js with eslint rule: `"no-underscore-dangle": "off"` ---- ## Examples * [Parcel Typescript Docs](https://parceljs.org/typeScript.html)
Context
Type checking and options to set class methods as private, for example, are nice to have
Expected result
"no-underscore-dangle": "off"rule to prevent use of underscores and use private keyword from typescript insteadCurrent result
Plain js with eslint rule:
"no-underscore-dangle": "off"Examples