Skip to content

Commit

Permalink
Merge branch 'build-tools/create' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
admturner committed Mar 29, 2022
2 parents 3f4e145 + a0f3803 commit acd9eed
Show file tree
Hide file tree
Showing 7 changed files with 13,127 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
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
15 changes: 15 additions & 0 deletions .gitignore
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
21 changes: 21 additions & 0 deletions composer.json
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"
}
}
785 changes: 785 additions & 0 deletions composer.lock

Large diffs are not rendered by default.

Loading

0 comments on commit acd9eed

Please sign in to comment.