Rename 'lint' to 'lint:php-all' for clarity, make 'lint' run all
linters (PHP, JS, CSS), and simplify 'quality' to avoid duplication.
Addresses gemini review feedback from PR #103.
* fix: remove redundant Responsive Styles comment in admin-styles.css (issue #93)
Removes the generic '/* Responsive Styles */' comment that was redundant
alongside the specific '/* 782px is the WordPress mobile admin breakpoint. */'
comment, per Gemini Code Assist review feedback on PR #87.
Closes#93
* fix: add missing trailing commas to fix comma-dangle lint errors
Fixes ESLint comma-dangle errors in:
- cypress.config.js (lines 15-16): missing trailing commas on
chromeWebSecurity property and closing e2e object brace
- cypress/e2e/playground-single-site.cy.js (line 23): missing trailing
comma on expect() message argument
Also updates eslint-plugin-cypress from ^2.15.1 to ^6.2.0 to resolve
peer dependency conflict that prevented local lint verification.
* fix: address PR #85 package.json review feedback (issue #95)
* fix: add trailing commas to cypress.config.js for comma-dangle rule
ESLint comma-dangle rule (always-multiline) requires trailing commas on
the last property and closing brace of multiline objects. Adding lint:js
coverage of cypress.config.js in package.json exposed these two missing
trailing commas at lines 15 and 16.
* fix: resolve ESLint errors blocking CI on PR #103
- Remove 'cypress/globals' env key from .eslintrc.js; this key requires
eslint-plugin-cypress to be globally installed, which CI tools (Codacy,
CodeFactor) do not have. Cypress globals are already declared explicitly
in the globals block, making the env key redundant.
- Remove trailing commas from cypress.config.js to comply with the
comma-dangle: never ESLint rule defined in .eslintrc.js.
- Update package-lock.json to include stylelint and stylelint-config-standard
which were in devDependencies but missing from the lock file.
- Convert tab indentation to 4 spaces in admin/css/admin-styles.css
and admin/css/update-source-selector.css per project coding standards
- Add stylelint and stylelint-config-standard to devDependencies
- Add lint:css npm script to enable CSS quality checking
- Update quality script to include CSS linting
The playground/multisite.html CSS rule-empty-line-before fix was already
applied in commit 3ca2fe5. This PR formally closes the quality-debt
tracking issue by verifying the fix and adding CSS linting tooling to
prevent similar regressions.
Closes#38
- Update @wp-playground/cli to v3.0.22 (from deprecated v1.0.28)
- Add bin/playground-test.sh for AI assistant CLI testing
- Add bin/localwp-setup.sh for LocalWP integration
- Create .agents/local-testing-guide.md documentation
- Update blueprints to use new installPlugin step format
- Add npm scripts for playground:start/stop/status
- Add npm scripts for localwp:create/sync/reset
- Update GitHub Actions to use new CLI version
- Use PHP 8.0 and latest WordPress in blueprints
Resolved conflicts:
- package.json: Use version 0.1.15 from main
- wp-plugin-starter-template.php: Use version 0.1.15, keep Plugin class usage
- AGENTS.md: Merge both versions, keep CI/CD content
- .wiki/Architecture-Overview.md: Use .agents/ directory structure
- wiki/* files: Delete (moved to .wiki/)
- .agents/error-checking-feedback-loops.md: Keep from feature branch
Also includes:
- Renamed .ai-workflows/ to .agents/
- Renamed .ai-assistant.md to AGENTS.md
- Updated version to 0.1.15