-
Notifications
You must be signed in to change notification settings - Fork 93
Fix wp-env warning #1237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix wp-env warning #1237
Changes from 1 commit
5b9a7db
4505250
f703d91
2fd65c1
8913a87
aaa351f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,3 +64,4 @@ temp/ | |
| ############ | ||
|
|
||
| .wp-env.override.json | ||
| .wp-env.tests.override.json | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,9 +1,6 @@ | ||||||||||||||||||
| { | ||||||||||||||||||
| "core": null, | ||||||||||||||||||
| "plugins": [ "." ], | ||||||||||||||||||
| "env": { | ||||||||||||||||||
| "tests": { | ||||||||||||||||||
| "phpVersion": "7.4" | ||||||||||||||||||
| } | ||||||||||||||||||
| } | ||||||||||||||||||
| } | ||||||||||||||||||
| "$schema": "https://schemas.wp.org/trunk/wp-env.json", | ||||||||||||||||||
| "core": null, | ||||||||||||||||||
| "plugins": [ "." ], | ||||||||||||||||||
| "testsEnvironment": false | ||||||||||||||||||
|
||||||||||||||||||
| "$schema": "https://schemas.wp.org/trunk/wp-env.json", | |
| "core": null, | |
| "plugins": [ "." ], | |
| "testsEnvironment": false | |
| "$schema": "https://schemas.wp.org/trunk/wp-env.json", | |
| "core": null, | |
| "plugins": [ "." ], | |
| "testsEnvironment": false |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,8 @@ | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| "$schema": "https://schemas.wp.org/trunk/wp-env.json", | ||||||||||||||||||||||||||
| "core": null, | ||||||||||||||||||||||||||
| "plugins": [ "." ], | ||||||||||||||||||||||||||
| "testsEnvironment": false, | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
| "testsEnvironment": false, |
Outdated
Copilot
AI
Mar 26, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.wp-env.tests.json uses tab indentation, but .editorconfig enforces 2-space indentation for *.json. Please reformat this file accordingly to keep JSON formatting consistent across the repo.
| "$schema": "https://schemas.wp.org/trunk/wp-env.json", | |
| "core": null, | |
| "plugins": [ "." ], | |
| "testsEnvironment": false, | |
| "phpVersion": "7.4", | |
| "port": 8889 | |
| "$schema": "https://schemas.wp.org/trunk/wp-env.json", | |
| "core": null, | |
| "plugins": [ "." ], | |
| "testsEnvironment": false, | |
| "phpVersion": "7.4", | |
| "port": 8889 |
Uh oh!
There was an error while loading. Please reload this page.