Skip to content

Commit

Permalink
init commit.
Browse files Browse the repository at this point in the history
this is the first version pushed to GitHub.
  • Loading branch information
pbiron committed Jan 13, 2020
0 parents commit 21dc064
Show file tree
Hide file tree
Showing 28 changed files with 6,512 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.zip
node_modules/
node_modules
bower_components/
vendor/
unused/
.sass-cache/
*.min.css
*.min.js
*-rtl.css
26 changes: 26 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"curly": true,
"eqeqeq": true,
"esversion": 6,
"noarg": true,
"nonbsp": true,
"undef": true,
"unused": true,
"strict": true,
"proto": true,

"browser": true,
"devel": true,
"jquery": true,

"globals": {
"_": false,
"Backbone": false,
"jQuery": false,
"JSON": false,
"wp": false,
"export": false,
"module": false,
"require": false
}
}
Loading

0 comments on commit 21dc064

Please sign in to comment.