This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
23,564 additions
and
9,450 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Code Linting | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
lint: | ||
name: Lint all code | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate --strict | ||
|
||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- name: Install dependencies | ||
run: composer install --prefer-dist --no-progress --ignore-platform-reqs | ||
|
||
- name: Validate workflow files (YAML) | ||
run: npm run validate:yaml | ||
|
||
- name: Lint Plugin code (PHP) | ||
run: composer run lint:php | ||
|
||
- name: Lint Plugin scripts (JS) | ||
run: composer run format:js:fix && composer run lint:js | ||
|
||
#- name: Lint stylesheets (CSS) | ||
# run: composer run lint:css | ||
|
||
#- name: Lint templates (HTML) | ||
# run: composer run lint:html | ||
|
||
- name: Lint documentation (Markdown) | ||
run: composer run lint:md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
name: Snyk | ||
|
||
on: push | ||
|
||
jobs: | ||
security: | ||
name: Scan for vulnerabilities | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Run Snyk to check for vulnerabilities | ||
uses: snyk/actions/php@master | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
with: | ||
args: --all-projects | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
|
||
- name: Run Snyk to check for vulnerabilities | ||
uses: snyk/actions/php@master | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
with: | ||
args: --all-projects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"style-disabled": true, | ||
"head-script-disabled": true, | ||
"attr-lowercase": true, | ||
"attr-no-duplication": true, | ||
"attr-no-unnecessary-whitespace": true, | ||
"attr-unsafe-chars": true, | ||
"attr-value-double-quotes": true, | ||
"attr-value-not-empty": false, | ||
"alt-require": true, | ||
"input-requires-label": true, | ||
"href-abs-or-rel": "rel", | ||
"tagname-lowercase": true, | ||
"empty-tag-not-self-closed": true, | ||
"src-not-empty": true, | ||
"id-class-ad-disabled": true, | ||
"id_class_value": "underline", | ||
"id-unique": true, | ||
"inline-script-disabled": true, | ||
"inline-style-disabled": true, | ||
"space-tab-mixed-disabled": true | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.