-
-
Notifications
You must be signed in to change notification settings - Fork 680
Fix 1786 #1831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Fix 1786 #1831
Changes from 13 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
c675a61
Fix #1786: Add rule match-component-import-name
doug-wade 9c7084e
Write the documentation for match-component-import-name
doug-wade eb435ae
fix(1786): Respond to PR feedback
doug-wade 3f58b7f
Update lib/rules/match-component-import-name.js
doug-wade 51350ba
Don't change utils if you can avoid it
doug-wade a2b1021
Merge branch 'fix-1786' of https://github.com/doug-wade/eslint-plugin…
doug-wade 73095eb
update docs
doug-wade 4192a84
Update docs/rules/match-component-import-name.md
doug-wade d488031
Update docs/rules/match-component-import-name.md
doug-wade a202f50
Update docs/rules/match-component-import-name.md
doug-wade 65533a4
Update docs/rules/match-component-import-name.md
doug-wade 924570a
remove case option
doug-wade b7c2750
remove stray newline
doug-wade ccbfd9a
Remove prefix; handle computed properties
doug-wade 5e0f072
but who lints the linters
doug-wade File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,80 @@ | ||
--- | ||
pageClass: rule-details | ||
sidebarDepth: 0 | ||
title: vue/match-component-import-name | ||
description: require the registered component name to match the imported component name | ||
--- | ||
# vue/match-component-import-name | ||
|
||
> require the registered component name to match the imported component name | ||
|
||
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge> | ||
|
||
## :book: Rule Details | ||
|
||
By default, this rule will validate that the imported name matches the name of the components object property identifer. Note that "matches" means that the imported name matches either the PascalCase or kebab-case version of the components object property identifer. If you would like to enforce that it must match only one of PascalCase or kebab-case, use this rule in conjunction with the rule `component-definition-name-casing`. | ||
|
||
<eslint-code-block :rules="{'vue/match-component-file-name': ['error']}"> | ||
|
||
```vue | ||
<script> | ||
export default { | ||
components: { | ||
/* ✓ GOOD */ | ||
AppButton, | ||
AppButton: AppButton, | ||
|
||
/* ✗ BAD */ | ||
SomeOtherName: AppButton, | ||
'app-button': AppButton | ||
} | ||
} | ||
</script> | ||
``` | ||
|
||
</eslint-code-block> | ||
|
||
## :wrench: Options | ||
|
||
```json | ||
{ | ||
"vue/match-component-import-name": [ | ||
"error", | ||
{ | ||
"prefix": "prefix-" | ||
} | ||
] | ||
} | ||
``` | ||
|
||
- `"prefix": ""` ... required prefix for registered component names. Default is set to an empty string (no prefix). | ||
|
||
</eslint-code-block> | ||
|
||
### `{ prefix: 'Prefix' }` | ||
|
||
<eslint-code-block :rules="{'vue/match-component-file-name': ['error', { prefix: 'Prefix' }]}"> | ||
|
||
```vue | ||
<script> | ||
export default { | ||
components: { | ||
/* ✓ GOOD */ | ||
PrefixAppButton: AppButton, | ||
'Prefix-app-button': AppButton, | ||
|
||
/* ✗ BAD */ | ||
AppButton, | ||
SomeOtherName: AppButton, | ||
'app-button': AppButton, | ||
} | ||
} | ||
</script> | ||
``` | ||
|
||
</eslint-code-block> | ||
|
||
## :mag: Implementation | ||
|
||
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/match-component-import-name.js) | ||
- [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/match-component-import-name.js) |
This file contains hidden or 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 hidden or 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,136 @@ | ||
/** | ||
* @author Doug Wade <[email protected]> | ||
* See LICENSE file in root directory for full license. | ||
*/ | ||
'use strict' | ||
|
||
const utils = require('../utils') | ||
const casing = require('../utils/casing') | ||
|
||
module.exports = { | ||
meta: { | ||
type: 'problem', | ||
docs: { | ||
description: | ||
'require the registered component name to match the imported component name', | ||
categories: undefined, | ||
url: 'https://eslint.vuejs.org/rules/match-component-import-name.html' | ||
}, | ||
fixable: null, | ||
schema: [ | ||
{ | ||
type: 'object', | ||
properties: { | ||
prefix: { | ||
type: 'string' | ||
} | ||
}, | ||
additionalProperties: false | ||
} | ||
], | ||
messages: { | ||
unexpected: | ||
'Component alias {{importedName}} should be one of: {{expectedName}}.', | ||
prefix: | ||
'Component alias {{propertyName}} should have the prefix {{prefix}}.' | ||
} | ||
}, | ||
/** | ||
* @param {RuleContext} context | ||
* @returns {RuleListener} | ||
*/ | ||
create(context) { | ||
const options = context.options[0] || {} | ||
|
||
/** | ||
* @param {ExportDefaultDeclaration} node | ||
* @return {Array<Property>} | ||
*/ | ||
function getComponents(node) { | ||
if (node.declaration.type !== 'ObjectExpression') { | ||
return [] | ||
} | ||
|
||
const componentProperty = node.declaration.properties | ||
.filter(utils.isProperty) | ||
.find( | ||
(property) => utils.getStaticPropertyName(property) === 'components' | ||
) | ||
|
||
if ( | ||
!componentProperty || | ||
componentProperty.value.type !== 'ObjectExpression' | ||
) { | ||
return [] | ||
} | ||
|
||
return componentProperty.value.properties.filter(utils.isProperty) | ||
} | ||
|
||
/** @param {Property} property */ | ||
function propertyStartsWithPrefix(property) { | ||
if (!options.prefix) { | ||
return true | ||
} | ||
|
||
const name = utils.getStaticPropertyName(property) | ||
return name ? name.startsWith(options.prefix) : false | ||
} | ||
|
||
/** | ||
* @param {Identifier} identifier | ||
* @param {String} prefix | ||
* @return {Array<String>} | ||
*/ | ||
function getExpectedNames(identifier, prefix) { | ||
return [ | ||
`${prefix}${casing.pascalCase(identifier.name)}`, | ||
`${prefix}${casing.kebabCase(identifier.name)}` | ||
] | ||
} | ||
|
||
return { | ||
ExportDefaultDeclaration(node) { | ||
FloEdelmann marked this conversation as resolved.
Show resolved
Hide resolved
|
||
const components = getComponents(node) | ||
|
||
if (!components) { | ||
return | ||
} | ||
|
||
components.forEach( | ||
/** @param {Property} property */ | ||
(property) => { | ||
if (!propertyStartsWithPrefix(property)) { | ||
context.report({ | ||
node: property, | ||
messageId: 'prefix', | ||
data: { | ||
propertyName: utils.getStaticPropertyName(property) || '', | ||
prefix: options.prefix | ||
} | ||
}) | ||
} | ||
|
||
if (property.value.type !== 'Identifier') { | ||
return | ||
} | ||
|
||
const prefix = options.prefix || '' | ||
const importedName = utils.getStaticPropertyName(property) || '' | ||
const expectedNames = getExpectedNames(property.value, prefix) | ||
if (!expectedNames.includes(importedName)) { | ||
context.report({ | ||
node: property, | ||
messageId: 'unexpected', | ||
data: { | ||
importedName, | ||
expectedName: expectedNames.join(', ') | ||
} | ||
}) | ||
} | ||
} | ||
) | ||
} | ||
} | ||
} | ||
} |
This file contains hidden or 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,117 @@ | ||
/** | ||
* @author Doug Wade | ||
* See LICENSE file in root directory for full license. | ||
*/ | ||
'use strict' | ||
|
||
const RuleTester = require('eslint').RuleTester | ||
const rule = require('../../../lib/rules/match-component-import-name') | ||
|
||
const tester = new RuleTester({ | ||
parser: require.resolve('vue-eslint-parser'), | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
sourceType: 'module' | ||
} | ||
}) | ||
|
||
tester.run('match-component-import-name', rule, { | ||
valid: [ | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { ValidImport } } </script> | ||
` | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { 'valid-import': ValidImport } } </script> | ||
` | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { ValidImport, ...SpreadImport } } </script> | ||
` | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { 'valid-import': ValidImport, ...SpreadImport } } </script> | ||
` | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { PrefixValidImport: ValidImport } } </script> | ||
`, | ||
options: [{ prefix: 'Prefix' }] | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { 'prefix-valid-import': ValidImport } } </script> | ||
`, | ||
options: [{ prefix: 'prefix-' }] | ||
} | ||
], | ||
invalid: [ | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { InvalidExport: SomeRandomName } } </script> | ||
`, | ||
errors: [ | ||
{ | ||
message: | ||
'Component alias InvalidExport should be one of: SomeRandomName, some-random-name.', | ||
line: 2, | ||
column: 47 | ||
} | ||
] | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { 'invalid-import': InvalidImport } } | ||
`, | ||
options: [{ prefix: 'prefix-' }], | ||
errors: [ | ||
{ | ||
message: | ||
'Component alias invalid-import should have the prefix prefix-.', | ||
line: 2, | ||
column: 47 | ||
}, | ||
{ | ||
message: | ||
'Component alias invalid-import should be one of: prefix-InvalidImport, prefix-invalid-import.', | ||
line: 2, | ||
column: 47 | ||
} | ||
] | ||
}, | ||
{ | ||
filename: 'test.vue', | ||
code: ` | ||
<script> export default { components: { 'invalid-import': InvalidImport } } </script> | ||
`, | ||
options: [{ prefix: 'Prefix' }], | ||
errors: [ | ||
{ | ||
message: | ||
'Component alias invalid-import should have the prefix Prefix.', | ||
line: 2, | ||
column: 47 | ||
}, | ||
{ | ||
message: | ||
'Component alias invalid-import should be one of: PrefixInvalidImport, Prefixinvalid-import.', | ||
line: 2, | ||
column: 47 | ||
} | ||
] | ||
} | ||
] | ||
}) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.