Invalid property ‘fill’ found on tag ‘path’, but it is only allowed on: svgeslintreact/no-unknown-property
react/no-unknown-property 检测svg 的fill属性 但那时我需要的 使用 规则设置检查模式
{
"rules": {
"react/no-unknown-property": [
"error",
{
"ignore": [
"fill",
"p-id"
]
}
]
}
}