0
.stylelintrc
{
"plugins": [
"stylelint-selector-bem-pattern"
],
"rules": {
"plugin/selector-bem-pattern": {
"componentName": "[A-Z]+",
"componentSelectors": {
"initial": "^\\.{componentName}(?:-[a-z]+)?$",
"combined": "^\\.combined-{componentName}-[a-z]+$"
},
"utilitySelectors": "^\\.util-[a-z]+$"
}
}
}
/사용자/jitendravyas/응용 프로그램 테스트/스타일/구성 요소/_ 캠페인 - 설정 - 통합을 작동하지 내가 stylelint을 실행할 때 .scss
/* @define campaign-settings */
.campaign-settings__integrations {
@include flex;
}
.campaign-settings__integration {
border: 1px solid $color-green;
border-radius: 3px;
color: $color-green;
margin-right: $base-spacing-unit;
@include flex;
.check {
background: $color-green;
color: white;
@include vertical-center;
}
> div {
padding: $half-spacing-unit;
}
}
는 오류가 발생하지 않습니다. 스타일 린트는 다른 규칙을 사용하고 있습니다.
첫 번째 의견에서 파일 이름과 구성 요소 이름이 같아야한다는 것을 의미합니까? –
정의에 유효하지 않은 구성 요소 이름이 생겼습니다./*/** @define campaign-settings */*/*/plugin/selector-bem-pattern'오류 –