Skip to content

Commit

Permalink
Add base files
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitbohra committed Apr 29, 2018
0 parents commit 0e12e7f
Show file tree
Hide file tree
Showing 17 changed files with 10,485 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .babelrc
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"
}
]
]
}
9 changes: 9 additions & 0 deletions .eslintignore
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
42 changes: 42 additions & 0 deletions .eslintrc
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
]
}
}
58 changes: 58 additions & 0 deletions .gitignore
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
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
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
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.
Loading

0 comments on commit 0e12e7f

Please sign in to comment.