Skip to content

Commit

Permalink
Merge pull request #14 from leocaseiro/feature/import-export
Browse files Browse the repository at this point in the history
Feature/import export
  • Loading branch information
leocaseiro authored Sep 10, 2016
2 parents d674a80 + fe466a5 commit df03191
Show file tree
Hide file tree
Showing 7 changed files with 619 additions and 330 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

# WordPress Coding Standards
# http://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

[*.json]
indent_style = space
indent_size = 2

[*.txt,wp-config-sample.php]
end_of_line = crlf
51 changes: 51 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"preset": "jquery",
"requireDotNotation": {
"allExcept": [
"snake_case",
"keywords"
]
},
"disallowSpaceAfterPrefixUnaryOperators": [
"++",
"--",
"+",
"-",
"~"
],
"disallowSpaceBeforePostfixUnaryOperators": true,
"maximumLineLength": null,
"requireVarDeclFirst": true,
"requireSpaceAfterPrefixUnaryOperators": [
"!"
],
"requireSpacesInsideBrackets": null,
"requireSpacesInsideParentheses": {
"all": true,
"except": [
"{",
"}",
"[",
"]",
"function"
]
},
"requireYodaConditions": [
"==",
"!=",
"===",
"!=="
],
"validateQuoteMarks": "'",
"requireCapitalizedComments": {
"allExcept": [
"global",
"exported",
"jshint",
"eslint",
"jslint"
]
},
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"requireBlocksOnNewline": true
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ FAQ (Frequently Asked Questions)
Changelog
--------------

**1.7.0**

* Add Settings link on Plugins Page
* Add Import and Export (Thanks @lucasbhjf for his contribution)


**1.6**

* Set all fields as required [Fix Issue #6](https://github.com/leocaseiro/Wordpress-Plugin-Custom-Options-Plus/issues/6)
Expand Down
Loading

0 comments on commit df03191

Please sign in to comment.