新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
1.1 KiB
1.1 KiB
jsx-a11y/no-autofocus
💼 This rule is enabled in the following configs: ☑️ recommended, 🔒 strict.
Enforce that autoFocus prop is not used on elements. Autofocusing elements can cause usability issues for sighted and non-sighted users, alike.
Rule options
This rule takes one optional object argument of type object:
{
"rules": {
"jsx-a11y/no-autofocus": [ 2, {
"ignoreNonDOM": true
}],
}
}
For the ignoreNonDOM option, this determines if developer created components are checked.
Succeed
<div />
Fail
<div autoFocus />
<div autoFocus="true" />
<div autoFocus="false" />
<div autoFocus={undefined} />
Accessibility guidelines
General best practice (reference resources)