1.0.0-doc.1 • Published 3 years ago
eslint-plugin-no-utility-type v1.0.0-doc.1
eslint-plugin-no-utility-type
eslint-plugin-no-utility-type is an eslint plugin that prevents the use of utility types for concrete types.
Installation
npm install -D eslint-plugin-no-utility-type
# or
yarn add -D eslint-plugin-no-utility-type
# or
pnpm add -D eslint-plugin-no-utility-typeUsage
Add the no-utility-type plugin to your .eslintrc, and add the no-utility-type/disallow rule.
By default, the Omit, Exclude, Pick, and Extract types are not allowed.
{
"plugins": ["no-utility-type"],
"rules": {
"no-utility-type/disallow": "error"
}
}Use the types option to manually set the types to disallow.
{
"plugins": ["no-utility-type"],
"rules": {
"no-utility-type/disallow": [
"error",
{
"types": ["Omit", "Exclude", "Record"]
}
]
}
}You CANNOT set a type that is not a TypeScript built-in type., in which case the linter will report an error.
For example:
// eslint error: User-defined type 'MyRecord' should be allowed
type myRecord = MyRecord<string, unknown>;{
"plugins": ["no-utility-type"],
"rules": {
"no-utility-type/disallow": [
"error",
{
"types": ["Omit", "Exclude", "MyRecord"]
}
]
}
}1.0.0-doc.1
3 years ago
1.0.0
3 years ago