-
-
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.
- Loading branch information
0 parents
commit 0e12e7f
Showing
17 changed files
with
10,485 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,13 @@ | ||
{ | ||
"presets": [ | ||
"@wordpress/default" | ||
], | ||
"plugins": [ | ||
[ | ||
"@wordpress/babel-plugin-makepot", | ||
{ | ||
"output": "languages/dummynator.pot" | ||
} | ||
] | ||
] | ||
} |
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,9 @@ | ||
**/*.min.js | ||
**/*.build.js | ||
**/node_modules/** | ||
**/vendor/** | ||
build | ||
coverage | ||
cypress | ||
node_modules | ||
vendor |
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,42 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"prettier", | ||
"prettier/react" | ||
], | ||
"plugins": [ | ||
"prettier", | ||
"react" | ||
], | ||
"parser": "babel-eslint", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"globals": { | ||
"wp": true, | ||
"document": true, | ||
"console": true, | ||
"window": true | ||
}, | ||
"settings": { | ||
"react": { | ||
"pragma": "wp" | ||
} | ||
}, | ||
"env": { | ||
"es6": true | ||
}, | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"react/prop-types": [ | ||
0 | ||
], | ||
"react/display-name": [ | ||
0 | ||
] | ||
} | ||
} |
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,58 @@ | ||
# Unit tests | ||
/tmp | ||
/tests/bin/tmp | ||
|
||
# Numerous always-ignore extensions | ||
.diff | ||
.err | ||
.orig | ||
.log | ||
.rej | ||
.swo | ||
.swp | ||
.vi | ||
~ | ||
.sass-cache | ||
|
||
# OS or Editor folders | ||
.DS_Store | ||
Thumbs.db | ||
.cache | ||
.project | ||
.settings | ||
.tmproj | ||
*.esproj | ||
nbproject | ||
*.sublime-project | ||
*.sublime-workspace | ||
.vscode | ||
|
||
# Dreamweaver added files | ||
_notes | ||
dwsync.xml | ||
|
||
# Komodo | ||
*.komodoproject | ||
.komodotools | ||
|
||
# Folders to ignore | ||
.hg | ||
.svn | ||
.CVS | ||
intermediate | ||
.idea | ||
cache | ||
node_modules | ||
assets/dist/ | ||
|
||
# Composer | ||
vendor | ||
|
||
#build | ||
build | ||
languages | ||
dummynator.zip | ||
|
||
# Project Notes | ||
TODO.md | ||
NOTES.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
**Change Log** | ||
-------------- | ||
|
||
All notable changes to "Dummynator" will be documented here | ||
|
||
|
||
***v1.0.0*** | ||
|
||
Released on [Date] | ||
|
||
- Initial plugin release |
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,14 @@ | ||
**Contribution Guide** | ||
---------------------- | ||
|
||
This page contains guidelines for contributing 'Dummynator'. Please review these guidelines before submitting any pull requests to this package. | ||
|
||
***Pull Requests*** | ||
|
||
The pull request process differs for new features and bugs. Before sending a pull request for a new feature, you should first create an issue with `[Proposal]` in the title. The proposal should describe the new feature, as well as implementation ideas. The proposal will then be reviewed and either approved or denied. Once a proposal is approved, a pull request may be created implementing the new feature. Pull requests which do not follow this guideline will be closed immediately. | ||
|
||
Pull requests for bugs may be sent without creating any proposal issue. If you believe that you know of a solution for a bug that has been filed on GitHub, please leave a comment detailing your proposed fix. | ||
|
||
***Feature Requests*** | ||
|
||
If you have an idea for a new feature you would like to see added to this package, you may create an issue on GitHub with `[Request]` in the title. The feature request will then be reviewed by @ajitbohra. |
Oops, something went wrong.