mirror of
https://gh.wpcy.net/https://github.com/WordPress/create-block-theme.git
synced 2026-04-25 12:02:15 +08:00
23 lines
449 B
JSON
23 lines
449 B
JSON
{
|
|
"extends": "plugin:@wordpress/eslint-plugin/recommended",
|
|
"globals": {
|
|
"FileReader": true,
|
|
"FontFace": true
|
|
},
|
|
"rules": {
|
|
"@wordpress/dependency-group": "error",
|
|
"@wordpress/i18n-text-domain": [
|
|
"error",
|
|
{
|
|
"allowedTextDomain": "create-block-theme"
|
|
}
|
|
],
|
|
"react/jsx-boolean-value": "error"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [ "**/test/**/*.js" ],
|
|
"extends": [ "plugin:@wordpress/eslint-plugin/test-unit" ]
|
|
}
|
|
]
|
|
}
|