-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'build-tools/create' into develop
- Loading branch information
Showing
7 changed files
with
13,127 additions
and
0 deletions.
There are no files selected for viewing
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,21 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
# | ||
# See the WordPress Coding Standards | ||
# https://make.wordpress.org/core/handbook/coding-standards/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,15 @@ | ||
# Build/test tool files and directories | ||
/node_modules | ||
/phpunit.xml | ||
/phpcs.xml | ||
/vendor | ||
|
||
# OS generated files | ||
*~ | ||
.Trash-* | ||
.DS_Store | ||
._* | ||
|
||
# Just in case | ||
wp-config.php | ||
.htaccess |
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,21 @@ | ||
{ | ||
"name": "washingtonstateuniversity/hrswp-employee-recognition", | ||
"license": "GPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Adam Turner" | ||
} | ||
], | ||
"require-dev": { | ||
"dealerdirect/phpcodesniffer-composer-installer": "~0.7.2", | ||
"squizlabs/php_codesniffer": "^3.6.2", | ||
"phpcompatibility/php-compatibility": "^9.2.0", | ||
"wp-coding-standards/wpcs": "~2.3.0", | ||
"sirbrillig/phpcs-variable-analysis": "^2.11.2", | ||
"roave/security-advisories": "dev-master" | ||
}, | ||
"scripts": { | ||
"format": "phpcbf --standard=phpcs.xml.dist --report=summary,source", | ||
"lint": "phpcs --colors" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.