-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
enhancement: plugin rule optionNew rule option for an existing eslint-plugin ruleNew rule option for an existing eslint-plugin rulehas prthere is a PR raised to close thisthere is a PR raised to close thispackage: eslint-pluginIssues related to @typescript-eslint/eslint-pluginIssues related to @typescript-eslint/eslint-plugin
Description
Repro
{
"rules": {
"@typescript-eslint/interface-name-prefix": [2,
{
"usePrefix": "always",
"prefix": "CustomPrefix"
}
]
}
}
export interface CustomPrefixHelloWorld {
}
Expected Result
This rule would be awesome if it allow us natively to use the prefix we need instead of having only I
. I know it's the recommended stuff, but sometimes a team works with same practices and other keyworks.
Actual Result
We can use only I
😞
Metadata
Metadata
Assignees
Labels
enhancement: plugin rule optionNew rule option for an existing eslint-plugin ruleNew rule option for an existing eslint-plugin rulehas prthere is a PR raised to close thisthere is a PR raised to close thispackage: eslint-pluginIssues related to @typescript-eslint/eslint-pluginIssues related to @typescript-eslint/eslint-plugin