eslint-plugin-return-type
v1.0.23
Published
ESlint plugin to enforces the access of specific return types.
Downloads
9,955
Readme
eslint-plugin-return-type
ESlint plugin to enforces the access of specific return types.
NOTE: eslint-plugin-return-type
uses tsconfig, tsconfig.json must be present.
Installation
npm install eslint-plugin-return-type --save-dev
Supported Rules
- enforce-access
- typeNames:
string[]
- Type name to enforce access
- typeNames:
Usage
.eslintrc:
"plugins": [
"return-type",
],
"rules": {
"return-type/enforce-access": [
"error",
{ "typeNames": ["SomeType", "\w*Error"] }
}
License
MIT