@cross-device-app-dev/grid-span-value
在栅格布局组件GridCol中,span和offset不建议使用小数。
规则配置
// code-linter.json5
{
"rules": {
"@cross-device-app-dev/grid-span-value": "warn"
}
}
选项
该规则无需配置额外选项。
正例
@Entry
@Component
struct Index {
build() {
Column() {
GridRow({
columns: { sm: 4, md: 8, lg: 12 }
}) {
GridCol({
span: { sm: 4, md: 4, lg: 4 }, offset: { sm: 0, md: 2, lg: 4 }
}) {
Row().backgroundColor($r('sys.color.ohos_id_color_palette_aux1'))
}
}
}
}
}
反例
@Entry
@Component
struct Index {
build() {
GridRow({
columns: { sm: 4, md: 8, lg: 12 }
}) {
GridCol({
span: { sm: 2.5, md: 4, lg: 4 }, offset: { sm: 0, md: 2.5, lg: 4 }
}) {
Row().backgroundColor($r('sys.color.ohos_id_color_palette_aux1'))
}
}
}
}
规则集
plugin:@cross-device-app-dev/recommended
plugin:@cross-device-app-dev/all
Code Linter代码检查规则的配置指导请参考Code Linter代码检查。