mirror of
https://gh.wpcy.net/https://github.com/WordPress/WordPress-Coding-Standards.git
synced 2026-04-27 01:12:39 +08:00
Some checks failed
Basic QA checks / Run code sniffs (push) Failing after -1s
Basic QA checks / XML Code style (push) Failing after 0s
Basic QA checks / Ruleset test: PHP latest on PHPCS lowest (push) Failing after -1s
Basic QA checks / Ruleset test: PHP latest on PHPCS stable (push) Failing after -1s
Basic QA checks / Ruleset test: PHP latest on PHPCS dev (push) Failing after 5s
Basic QA checks / Find typos (push) Failing after -1s
Basic QA checks / PHPStan (push) Failing after 3s
Quick Tests / QTest - PHP 7.2 on PHPCS lowest (push) Failing after -1s
Quick Tests / QTest - PHP 7.2 on PHPCS stable (push) Failing after -1s
Quick Tests / QTest - PHP latest on PHPCS lowest (push) Failing after 3s
Quick Tests / QTest - PHP latest on PHPCS stable (push) Failing after 3s
* GH Actions: Bump crate-ci/typos in the action-runners group
Bumps the action-runners group with 1 update: [crate-ci/typos](https://github.com/crate-ci/typos).
Updates `crate-ci/typos` from 1.44.0 to 1.45.0
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](631208b7aa...02ea592e44)
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: action-runners
...
Signed-off-by: dependabot[bot] <support@github.com>
* Typos config: add PHP `is_writeable` function as valid
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: jrfnl <jrfnl@users.noreply.github.com>
27 lines
654 B
TOML
27 lines
654 B
TOML
[files]
|
|
extend-exclude = [
|
|
"WordPress/Tests/*/*.inc",
|
|
"WordPress/Tests/*/*.fixed",
|
|
"WordPress/Tests/*/*.css",
|
|
"WordPress/Tests/*/*.js",
|
|
]
|
|
ignore-hidden = true
|
|
|
|
[default]
|
|
locale = "en-us"
|
|
check-filename = true
|
|
extend-ignore-identifiers-re = [
|
|
# Renaming these (function/array key) names would be a BC-break.
|
|
'analyse_implode',
|
|
'analyse_sprintf',
|
|
'cachable',
|
|
'is_targetted_token',
|
|
# These are search targets for sniffs, can't be helped.
|
|
'avail_post_stati',
|
|
'url_is_accessable_via_ssl',
|
|
'is_writeable',
|
|
]
|
|
|
|
[default.extend-words]
|
|
# Don't correct a limited list of specific words.
|
|
Automattic = "Automattic"
|