Skip to content

Commit

Permalink
Merge pull request #329 from Codeinwp/development
Browse files Browse the repository at this point in the history
Add Table chart
Fix date format in sample files
  • Loading branch information
contactashish13 authored Dec 3, 2018
2 parents 413ccc3 + 8869068 commit 2eeb0c9
Show file tree
Hide file tree
Showing 85 changed files with 9,323 additions and 413 deletions.
1 change: 1 addition & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
classes/Visualizer/Gutenberg/**/*.js
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,5 @@ after_deploy:
- chmod +x bin/deploy.sh
- ". ./bin/deploy.sh"
after_failure:
- cat "logs/phpcs.log"
- cat "logs/phpcs.log"
- cat "logs/jslogs.log"
36 changes: 36 additions & 0 deletions classes/Visualizer/Gutenberg/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": "wordpress",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-cond-assign": "off"
}
}
Loading

0 comments on commit 2eeb0c9

Please sign in to comment.