diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index e97c3ff..ca07297 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -29,11 +29,6 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-progress - - name: Install WordPress Coding Standards - run: | - composer require --dev wp-coding-standards/wpcs dealerdirect/phpcodesniffer-composer-installer - vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs - - name: Run PHPCS run: composer phpcs continue-on-error: true @@ -61,9 +56,6 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-progress - - name: Install PHPStan WordPress stubs - run: composer require --dev szepeviktor/phpstan-wordpress - - name: Run PHPStan run: composer phpstan continue-on-error: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2cad503..33eec54 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,11 +34,8 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-progress - # - name: Debug test file content - # run: echo "--- Debugging tests/test-admin.php lines 75-95 ---" && sed -n '75,95p' tests/test-admin.php && echo "--- End Debugging ---" - - # - name: Run tests - # run: ./vendor/bin/phpunit + - name: Run tests + run: ./vendor/bin/phpunit code-style: name: Code Style diff --git a/.wiki/Coding-Standards.md b/.wiki/Coding-Standards.md index 70240fc..88ac6aa 100644 --- a/.wiki/Coding-Standards.md +++ b/.wiki/Coding-Standards.md @@ -67,7 +67,7 @@ if ($condition) { ### Documentation * All classes, methods, and functions should be documented using PHPDoc -* Include a description of the parameters, return values, and possible exceptions +* Include descriptions of parameters, return values, and any exceptions thrown ```php /** @@ -271,7 +271,7 @@ To ensure your code passes the quality checks from these tools, follow these gui 3. **Using AI Assistants with Code Quality Tools** * When you receive feedback from code quality tools, you can use AI assistants to help address the issues * Copy the output from the code quality tool and paste it into your AI assistant chat - * Ask the AI to help you understand and resolve the issues + * Request the AI's assistance to interpret and resolve the reported issues * Example prompt: ```text diff --git a/.wiki/Contributing.md b/.wiki/Contributing.md index e755ae2..34631a1 100644 --- a/.wiki/Contributing.md +++ b/.wiki/Contributing.md @@ -106,7 +106,7 @@ When you receive feedback from these code quality tools, you can use AI assistan 1. Copy the output from the code quality tool 2. Paste it into your AI assistant chat -3. Ask the AI to help you understand and resolve the issues +3. Request the AI's assistance to interpret and resolve the reported issues 4. Apply the suggested fixes 5. Commit the changes and verify that the issues are resolved @@ -143,7 +143,7 @@ To ensure your code meets the quality standards, run these commands before submi * Check JavaScript coding standards: `npm run lint:js` * Check CSS coding standards: `npm run lint:css` -These checks will help identify and fix issues before they are caught by the automated code quality tools in the pull request process. +These checks will assist in identifying and resolving issues before they are caught by the automated code quality tools in the pull request process. ## Documentation diff --git a/README.md b/README.md index c87d4fd..e2abc99 100644 --- a/README.md +++ b/README.md @@ -376,7 +376,7 @@ When you receive feedback from these code quality tools, you can use AI assistan 1. Copy the output from the code quality tool 2. Paste it into your AI assistant chat -3. Ask the AI to help you understand and resolve the issues +3. Request the AI's assistance to interpret and resolve the reported issues 4. Apply the suggested fixes 5. Commit the changes and verify that the issues are resolved diff --git a/build.sh b/build.sh index bed059e..98c410e 100755 --- a/build.sh +++ b/build.sh @@ -71,7 +71,7 @@ if [ -d "vendor" ]; then cp -R vendor "$BUILD_DIR/" fi -# Create ZIP file +# Create ZIP file. echo "Creating ZIP file..." cd build || exit 1 zip -r "../$ZIP_FILE" "$PLUGIN_SLUG" -x "*.DS_Store" -x "*.git*" -x "*.github*" @@ -87,7 +87,7 @@ if [ -f "$ZIP_FILE" ]; then printf '\nDeploying to local WordPress installation...\n' echo "Deploying to local WordPress installation..." - # Remove existing plugin directory + # Remove existing plugin directory. rm -rf "${WP_LOCAL_PLUGIN_DIR:?}/$PLUGIN_SLUG" # Copy files to local WordPress installation diff --git a/phpcs-simple.xml b/phpcs-simple.xml index 1be1b41..7aae52c 100644 --- a/phpcs-simple.xml +++ b/phpcs-simple.xml @@ -14,7 +14,7 @@ */build/* */dist/* - + diff --git a/readme.txt b/readme.txt index ce954b1..3322c9c 100644 --- a/readme.txt +++ b/readme.txt @@ -150,7 +150,7 @@ When you receive feedback from these code quality tools, you can use AI assistan 1. Copy the output from the code quality tool 2. Paste it into your AI assistant chat -3. Ask the AI to help you understand and resolve the issues +3. Request the AI's assistance to interpret and resolve the reported issues 4. Apply the suggested fixes 5. Commit the changes and verify that the issues are resolved