-
Notifications
You must be signed in to change notification settings - Fork 17
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 b9aeac9
Showing
244 changed files
with
62,668 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,2 @@ | ||
>= 0.5% | ||
last 4 major versions |
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,2 @@ | ||
**/*.* | ||
!js/**/*.js |
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,24 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es6": true, | ||
"jquery": true | ||
}, | ||
"plugins": ["prettier"], | ||
"extends": ["airbnb-base", "plugin:prettier/recommended"], | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"no-underscore-dangle": "off", | ||
"semi": ["error", "never"], | ||
"arrow-parens": ["error", "as-needed"], | ||
"no-param-reassign": "off", | ||
"no-plusplus": [ | ||
"error", | ||
{ | ||
"allowForLoopAfterthoughts": true | ||
} | ||
], | ||
"no-cond-assign": ["error", "except-parens"] | ||
} | ||
} |
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,4 @@ | ||
contact_links: | ||
- name: Raise Support | ||
url: https://tools.themeselection.com/github/raise-support | ||
about: Raise support using form provided in this link |
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,57 @@ | ||
name: 'Handle issue' | ||
on: | ||
issues: | ||
types: [opened,reopened] | ||
|
||
# ℹ️ Required by gh cli | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
|
||
jobs: | ||
handle_new_issue: | ||
if: github.event.action == 'opened' | ||
runs-on: ubuntu-latest | ||
name: Handle new issue | ||
steps: | ||
- name: Greet & Apply label | ||
uses: themeselection/gh-action-comment-on-new-issue@v4.0.1 | ||
with: | ||
message: | | ||
### Hi [@${{ github.actor }}](https://github.com/${{ github.actor }}) <img src="https://user-images.githubusercontent.com/47495003/171637050-b790338b-c8fd-4807-af43-19c6fd6713ed.gif" height="25px" width="25px"> | ||
Thanks a lot for purchasing our theme and getting in touch with us. | ||
Your support has been raised, our response time could be 1 - 2 business days. | ||
In the meantime, feel free to check out related issues in the repository for more help. | ||
We really appreciate your patience. | ||
raise-support-using-form-msg: | | ||
Thanks for creating an issue ☺️ | ||
It seems our [raise support](https://tools.themeselection.com/github/raise-support) form was skipped while creating this issue. | ||
Please consider raising support via our support form only which will create issues using essential information we need to resolve your query quickly. | ||
This will help in growing an excellent community, where: | ||
- Other people can get it resolved if they have the same query | ||
- We can easily understand your query | ||
- Community at a later stage can also provide you solutions/suggestions | ||
Closing this issue. | ||
Regards. | ||
- name: Find duplicates | ||
uses: wow-actions/potential-duplicates@v1.0.9 | ||
with: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
label: duplicate | ||
comment: > | ||
Potential duplicates: {{#issues}} | ||
- #{{ number }} _({{ accuracy }}% Match)_ | ||
{{/issues}} | ||
remove_awaiting_reply_label: | ||
if: github.event.action == 'reopened' | ||
runs-on: ubuntu-latest | ||
name: Remove Awaiting Reply Label | ||
steps: | ||
- run: gh issue edit --remove-label awaiting-reply --repo ${{ github.repository }} |
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,15 @@ | ||
name: 'Handle new issue comment' | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
handle_new_issue_comment: | ||
runs-on: ubuntu-latest | ||
name: Handle new issue comment | ||
steps: | ||
- name: Toggle awaiting-reply label | ||
uses: jd-solanki/gh-action-toggle-awaiting-reply-label@v2.1.1 | ||
with: | ||
label: awaiting-reply | ||
only-if-label: support |
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,18 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v4 | ||
with: | ||
stale-issue-message: 'This issue has been automatically marked as stale because it has no recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.' | ||
close-issue-message: 'This issue has been automatically marked as closed because it has no recent activity.' | ||
stale-issue-label: 'stale' | ||
only-labels: 'awaiting-reply' | ||
exempt-issue-labels: 'triage' | ||
days-before-stale: 7 | ||
days-before-close: 7 |
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,63 @@ | ||
# System Files | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Thumbnails | ||
._* | ||
Thumbs.db | ||
ehthumbs.db | ||
ehthumbs_vista.db | ||
|
||
# Dump file | ||
*.stackdump | ||
|
||
# Folder config file | ||
[Dd]esktop.ini | ||
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Dependency directories | ||
node_modules | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# Optional sass cache | ||
/.sass-cache | ||
gulpfile.tmp.* | ||
|
||
################################################################################ | ||
############################### DEVELOPMENT_ONLY ############################### | ||
|
||
# Excludes generated | ||
# Excludes generated | ||
/dist | ||
/build | ||
/tmp | ||
/temp | ||
|
||
# Assets | ||
**/assets/vendor | ||
# **/static/vendor | ||
|
||
# HTML files | ||
/html-demo | ||
/html-starter-demo | ||
|
||
# Package Lock files | ||
/package-lock.json |
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,29 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"bracketSpacing": true, | ||
"bracketSameLine": true, | ||
"htmlWhitespaceSensitivity": "css", | ||
"insertPragma": false, | ||
"jsxSingleQuote": true, | ||
"printWidth": 120, | ||
"proseWrap": "preserve", | ||
"quoteProps": "as-needed", | ||
"requirePragma": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "none", | ||
"useTabs": false, | ||
"endOfLine": "lf", | ||
"embeddedLanguageFormatting": "auto", | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"js/**/*.js" | ||
], | ||
"options": { | ||
"semi": false | ||
} | ||
} | ||
] | ||
} |
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 @@ | ||
# Changelog | ||
|
||
All notable changes to this template will be documented in this file | ||
|
||
## [1.0.0] - [2022-09-20] | ||
|
||
### Added | ||
|
||
- Initial 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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 [ThemeSelection](https://themeselection.com/) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.