-
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.
Merge pull request #12 from paynow/feature/support-woocommerce-blocks
Update plugin to support for woocommerce checkout blocks
- Loading branch information
Showing
25 changed files
with
22,460 additions
and
594 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,27 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
|
||
# WordPress Coding Standards | ||
# https://make.wordpress.org/core/handbook/coding-standards/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
tab_width = 4 | ||
indent_style = tab | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.txt] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{md,json,yml}] | ||
trim_trailing_whitespace = false | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.json] | ||
indent_style = tab |
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,6 @@ | ||
module.exports = { | ||
extends: ['plugin:@woocommerce/eslint-plugin/recommended'], | ||
rules: { | ||
'react/react-in-jsx-scope': 'off', | ||
}, | ||
}; |
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,2 +1,64 @@ | ||
|
||
# Operating System files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# IDE files | ||
.idea | ||
.vscode/* | ||
project.xml | ||
project.properties | ||
.project | ||
.settings* | ||
*.sublime-project | ||
*.sublime-workspace | ||
.sublimelinterrc | ||
|
||
# Sass | ||
.sass-cache/ | ||
|
||
# Logs | ||
logs/ | ||
|
||
# Environment files | ||
wp-cli.local.yml | ||
yarn-error.log | ||
npm-debug.log | ||
.pnpm-debug.log | ||
|
||
# Build files | ||
*.sql | ||
*.swp | ||
*.zip | ||
|
||
# Built packages | ||
|
||
build-module/ | ||
build-style/ | ||
build-types/ | ||
dist/ | ||
|
||
# Project files | ||
node_modules/ | ||
vendor/ | ||
|
||
# TypeScript files | ||
tsconfig.tsbuildinfo | ||
|
||
# Node Package Dependencies | ||
package-lock.json | ||
|
||
# wp-env config | ||
.wp-env.override.json | ||
|
||
# Unit tests | ||
tmp/ | ||
|
||
# Composer | ||
vendor/ | ||
bin/composer/**/vendor/ | ||
lib/vendor/ | ||
contributors.md | ||
contributors.html | ||
paynow-for-woocommerce.zip | ||
classes/paynow.log |
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,10 @@ | ||
{ | ||
"phpVersion": null, | ||
"core": null, | ||
"plugins": ["https://downloads.wordpress.org/plugin/woocommerce.zip", "."], | ||
"config": { | ||
"JETPACK_AUTOLOAD_DEV": true, | ||
"WP_DEBUG": true, | ||
"SCRIPT_DEBUG": true | ||
} | ||
} |
Oops, something went wrong.