pageClass | sidebarDepth | title | description |
---|---|---|---|
rule-details |
0 |
vue-scoped-css/require-selector-used-inside |
disallow selectors defined that is not used inside `<template>` |
disallow selectors defined that is not used inside
<template>
- ⚙️ This rule is included in
"plugin:vue-scoped-css/all"
.
This rule reports the defined selectors is not used inside <template>
.
Similar to the vue-scoped-css/no-unused-selector rule, with differences.
This rule requires elements that matches the first selector be included in <template>
.
<template>
<div>
<input>
<div id="id_a"></div>
<div class="class-b">
<div class="class-c"></div>
</div>
</div>
</template>
<style scoped>
/* ✗ BAD */
ul {}
#id_unknown {}
.class-unknown {}
.class-b > .class-unknown {}
/* there is a difference in behavior from `no-unused-selector`. */
.class-decoration .class-b {}
/* ✓ GOOD */
div {}
#id_a {}
.class-b {}
.class-b > .class-c {}
</style>
{
"vue-scoped-css/require-selector-used-inside": ["error", {
"ignoreBEMModifier": false,
"captureClassesFromDoc": [],
"checkUnscoped": false
}]
}
ignoreBEMModifier
... Settrue
if you want to ignore theBEM
modifier. Default is false.captureClassesFromDoc
... Specifies the regexp that extracts the class name from the documentation in the comments. Even if there is no matching element, no error is reported if the document of a class name exists in the comments.checkUnscoped
... The rule only checks<style scoped>
by default, but if set totrue
it will also check<style>
without the scoped attribute. If you set it totrue
, be very careful that the warned CSS may actually be used outside the.vue
file.
<template>
<div class="cool-component"></div>
</template>
<style scoped>
/* ✓ GOOD */
.cool-component--active {}
</style>
Example of KSS format:
<template>
<div>
<a class="button star"></a>
</div>
</template>
<style scoped lang="scss">
/* ✓ GOOD */
// A button suitable for giving a star to someone.
//
// :hover - Subtle hover highlight.
// .star-given - A highlight indicating you've already given a star.
// .star-given:hover - Subtle hover highlight on top of star-given styling.
// .disabled - Dims the button to indicate it cannot be used.
//
// Styleguide 2.1.3.
a.button.star {
&.star-given {
}
&.disabled {
}
}
</style>