내 SASS 파일을 검사하기 위해 stylelint를 사용하려고합니다. 내가 규칙을 설정하면 "indentation": "tab"
stylelint 어떻게 제대로 들여 쓰기를 확인하는 2:1 ✖ Expected indentation of 1 tab indentation
3:1 ✖ Expected indentation of 1 tab indentatio
max-width을 미디어 쿼리에 사용할 때 경고/오류 메시지를 표시하고 min-width으로 모바일 우선 접근 방식을 권장합니다. 나는 온/오류 ... @media (max-width: 50em) {
padding: 1rem;
}
그러나 수 ... @media (min-width: 50em) {
padding: 1rem;
}
이유는 스타일을 postcss 작업의 일부로 만들고 싶지 않기 때문에 stylelint라는 별도의 작업을 만들려고합니다. 내가 쓰고있어 gruntfile에서 : stylelint: {
options: {},
src: './assets/css/precss/**'
}
내가 grunt stylelint를 실행하면 내 코드를 lints하지만
stylelint에서 배열 declaration-block-properties-order에 대해 배열을 중첩 할 수 있습니까? 궁금한 점은 Nicolas Gallagher's Idiomatic CSS과 비슷한 선언 명령을 시행하고 싶기 때문입니다. 그러나 패딩이나 마진이 먼저 오는지는별로 신경 쓰지 않습니다. 나는이 규칙을함으로써 쉽게 할 수있어 ... 그