refactor: HTML 및 CSS 코드 수정
- index.html에서 불필요한 h2 태그 제거 - SCSS 및 CSS 파일에서 box-sizing 및 transform 속성 정리 - 이미지 경로를 따옴표로 감싸기 - 주석 및 코드 정리
This commit is contained in:
26
.stylelintrc.json
Normal file
26
.stylelintrc.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"extends": [
|
||||
"stylelint-config-standard",
|
||||
"stylelint-config-standard-scss"
|
||||
],
|
||||
"ignoreFiles": [
|
||||
"**/node_modules/**",
|
||||
"**/_reset.scss",
|
||||
"**/_swiper.scss"
|
||||
],
|
||||
"rules": {
|
||||
"no-empty-source": null,
|
||||
"selector-class-pattern": null,
|
||||
"scss/at-import-partial-extension": null,
|
||||
"no-descending-specificity": null,
|
||||
"no-duplicate-selectors": null,
|
||||
"declaration-block-single-line-max-declarations": null,
|
||||
"scss/dollar-variable-pattern": null,
|
||||
"scss/at-function-pattern": null,
|
||||
"scss/no-global-function-names": null,
|
||||
"scss/load-no-partial-leading-underscore": null,
|
||||
"number-max-precision": null,
|
||||
"scss/operator-no-unspaced": null,
|
||||
"declaration-block-no-duplicate-properties": null
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user