-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config): add support for restrictionKeys
- Loading branch information
1 parent
ebd320a
commit 6e353c9
Showing
13 changed files
with
418 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
docs/linter/eslint-plugin/rules/o3r-restriction-key-tags.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# @o3r/o3r-restriction-key-tags | ||
|
||
Ensures that `@o3rRestrictionKey` are used with correct value. | ||
|
||
**Warning** This rule must be configured to be used. | ||
|
||
## How to use | ||
|
||
```json | ||
{ | ||
"@o3r/o3r-widget-tags": [ | ||
"error", | ||
{ | ||
"supportedInterfaceNames": ["NestedConfiguration", "Configuration", "CustomConfigurationInterface"], | ||
"supportedKeys": ["restriction_1", "restriction 2"] | ||
} | ||
] | ||
} | ||
``` | ||
|
||
## Valid code example | ||
|
||
```typescript | ||
export interface ConfigExample extends Configuration { | ||
/** | ||
* @o3rRestrictionKey restriction_1 | ||
*/ | ||
prop1: string; | ||
/** | ||
* @o3rRestrictionKey restriction_1 | ||
* @o3rRestrictionKey "restriction 2" | ||
*/ | ||
prop2: string; | ||
} | ||
``` | ||
|
||
## Invalid code example | ||
|
||
```typescript | ||
export interface ConfigExample extends Configuration { | ||
/** | ||
* @o3rRestrictionKey restriction 2 | ||
*/ | ||
prop: string; | ||
} | ||
``` | ||
|
||
```typescript | ||
export interface ConfigExample extends Configuration { | ||
/** | ||
* @o3rRestrictionKey unknownRestriction | ||
*/ | ||
prop: string | number; | ||
} | ||
``` | ||
|
||
```typescript | ||
export interface Example { | ||
/** | ||
* @o3rRestrictionKey restriction_1 | ||
*/ | ||
prop: string; | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
131 changes: 131 additions & 0 deletions
131
...int-plugin/src/rules/typescript/o3r-restriction-key-tags/o3r-restriction-key-tags.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
import o3rRestrictionKeyRule, { | ||
O3rRestrictionKeyTagsRuleOption, | ||
} from './o3r-restriction-key-tags'; | ||
const { | ||
RuleTester | ||
} = require('@typescript-eslint/rule-tester'); | ||
|
||
const ruleTester = new RuleTester(); | ||
|
||
const code = ` | ||
export interface Config extends Configuration { | ||
/** | ||
* @o3rRestrictionKey valid | ||
* @o3rRestrictionKey valid_with_underscore | ||
* @o3rRestrictionKey 'valid with space (single quote)' | ||
* @o3rRestrictionKey "valid with space (double quote)" | ||
* @o3rRestrictionKey '"valid" with double quote inside' | ||
* @o3rRestrictionKey "'valid' with single quote inside" | ||
* @o3rRestrictionKey valid_with_number_1 | ||
*/ | ||
prop: string; | ||
} | ||
`; | ||
|
||
const supportedKeys = [ | ||
'valid', | ||
'valid_with_underscore', | ||
'valid with space', | ||
'valid with space (single quote)', | ||
'valid with space (double quote)', | ||
'"valid" with double quote inside', | ||
"'valid' with single quote inside", | ||
'valid_with_number_1' | ||
]; | ||
|
||
const options = [{ supportedKeys }] as const satisfies Readonly<[O3rRestrictionKeyTagsRuleOption]>; | ||
|
||
const unknownKeys = [ | ||
`unknown_restriction`, | ||
`"invalid quote'`, | ||
`'another invalid quote"`, | ||
`'unknown with single quote'`, | ||
`"unknown with double quote"` | ||
]; | ||
|
||
const getCodeFor = (key: string) => ` | ||
export interface Config extends Configuration { | ||
/** | ||
* @o3rRestrictionKey ${key} | ||
*/ | ||
prop: string; | ||
} | ||
`; | ||
|
||
const getSuggestionFor = (actualKey: string) => supportedKeys.map((supportedKey) => ({ | ||
messageId: 'suggestUseSupportedKey', | ||
data: { | ||
actualKey, | ||
supportedKey | ||
}, | ||
output: getCodeFor(/[^\w]/.test(supportedKey) ? `"${supportedKey}"` : supportedKey) | ||
})); | ||
|
||
ruleTester.run('o3r-restriction-key-tags', o3rRestrictionKeyRule, { | ||
valid: [ | ||
{ | ||
code, | ||
options | ||
}, | ||
{ | ||
code: ` | ||
export interface Config extends Configuration { | ||
/** | ||
* Property without restriction | ||
*/ | ||
prop: string; | ||
}`, | ||
options | ||
} | ||
], | ||
invalid: [ | ||
{ | ||
code: getCodeFor('"at least one key provided"'), | ||
options: [{}], | ||
errors: [ | ||
{ messageId: 'noRestrictionKeyProvided' } | ||
] | ||
}, | ||
{ | ||
code: code.replace(' extends Configuration', ''), | ||
options, | ||
errors: [ | ||
{ | ||
messageId: 'notInConfigurationInterface' | ||
} | ||
] | ||
}, | ||
{ | ||
code: getCodeFor('valid with space'), | ||
options, | ||
output: getCodeFor(`"valid with space"`), | ||
errors: [ | ||
{ | ||
messageId: 'notWrapWithQuotes', | ||
data: { | ||
actualKey: 'valid with space' | ||
}, | ||
suggestions: [{ | ||
messageId: 'suggestWrapWithQuotes', | ||
data: { | ||
actualKey: 'valid with space' | ||
}, | ||
output: getCodeFor(`"valid with space"`) | ||
}] | ||
} | ||
] | ||
}, | ||
...unknownKeys.map((key) => ({ | ||
code: getCodeFor(key), | ||
options, | ||
errors: [{ | ||
messageId: 'notSupportedKey', | ||
data: { | ||
actualKey: key, | ||
supportedKeys: supportedKeys.join(', ') | ||
}, | ||
suggestions: getSuggestionFor(key) | ||
}] | ||
})) | ||
] | ||
}); |
Oops, something went wrong.