Skip to content

Commit 40ba529

Browse files
committed
feat(major): Init commit
1 parent 04eeea7 commit 40ba529

File tree

243 files changed

+84072
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+84072
-1
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
defaults,
2+
not IE 11,
3+
maintained node versions

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/*.*
2+
!js/**/*.js

.eslintrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"jquery": true
7+
},
8+
"plugins": ["prettier"],
9+
"extends": ["airbnb-base", "plugin:prettier/recommended"],
10+
"rules": {
11+
"prettier/prettier": "error",
12+
"no-underscore-dangle": "off",
13+
"semi": ["error", "never"],
14+
"arrow-parens": ["error", "as-needed"],
15+
"no-param-reassign": "off",
16+
"no-plusplus": [
17+
"error",
18+
{
19+
"allowForLoopAfterthoughts": true
20+
}
21+
],
22+
"no-cond-assign": ["error", "except-parens"]
23+
}
24+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 'Handle new issue comment'
2+
on:
3+
issue_comment:
4+
types: [created]
5+
6+
jobs:
7+
handle_new_issue_comment:
8+
runs-on: ubuntu-latest
9+
name: Handle new issue comment
10+
steps:
11+
- name: Toggle awaiting-reply label
12+
uses: jd-0001/[email protected]
13+
with:
14+
label: awaiting-reply
15+
only-if-label: support
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 'Handle new issue'
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
jobs:
7+
handle_new_issue:
8+
runs-on: ubuntu-latest
9+
name: Handle new issue
10+
steps:
11+
- name: Greet & Apply label
12+
uses: themeselection/[email protected]
13+
with:
14+
message: |
15+
### Hi there <img src="https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif" width="30px">
16+
Thanks a lot for getting in touch with us. Your support has been raised, our response time could be 1 - 2 business days.
17+
In the meantime, feel free to check out related issues in the repository for more help. We really appreciate your patience.
18+
raise-support-using-form-msg: |
19+
Thanks for creating an issue ☺️
20+
It seems our [raise support](https://themeselection.com/tools/github/raise-support) form was skipped while creating this issue.
21+
Please consider raising support via our support form only which will create issues using essential information we need to resolve your query quickly.
22+
This will help in growing an excellent community where,
23+
- Other people can get it resolved if they have the same query
24+
- We can easily understand your query
25+
- Community at a later stage can also provide you solutions/suggestions
26+
Closing this issue.
27+
Regards.
28+
- name: Find duplicates
29+
uses: wow-actions/[email protected]
30+
with:
31+
GITHUB_TOKEN: ${{ github.token }}
32+
label: duplicate
33+
comment: >
34+
Potential duplicates: {{#issues}}
35+
- #{{ number }} _({{ accuracy }}% Match)_
36+
{{/issues}}

.github/workflows/issue-staler.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v4
11+
with:
12+
stale-issue-message: 'This issue has been automatically marked as stale because its has not had recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.'
13+
close-issue-message: 'This issue has been automatically marked as closed because it has not had recent activity.'
14+
stale-issue-label: 'stale'
15+
only-labels: 'awaiting-reply'
16+
exempt-issue-labels: 'triage'
17+
days-before-stale: 7
18+
days-before-close: 7

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# System Files
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Thumbnails
7+
._*
8+
Thumbs.db
9+
ehthumbs.db
10+
ehthumbs_vista.db
11+
12+
# Dump file
13+
*.stackdump
14+
15+
# Folder config file
16+
[Dd]esktop.ini
17+
18+
# Windows shortcuts
19+
*.lnk
20+
21+
# Logs
22+
logs
23+
*.log
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# Dependency directories
29+
node_modules
30+
31+
# Optional npm cache directory
32+
.npm
33+
34+
# Optional eslint cache
35+
.eslintcache
36+
37+
# Yarn Integrity file
38+
.yarn-integrity
39+
40+
# Optional sass cache
41+
/.sass-cache
42+
gulpfile.tmp.*
43+
44+
################################################################################
45+
############################### DEVELOPMENT_ONLY ###############################
46+
47+
# Excludes generated
48+
/dist
49+
/build
50+
/tmp
51+
/temp
52+
53+
# Assets
54+
# **/assets/vendor
55+
# **/static/vendor
56+
57+
# HTML files
58+
/html-starter
59+
/html-demo
60+
/html-starter-demo

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dist
2+
node_modules
3+
build
4+
assets/vendor
5+
html

.prettierrc.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"arrowParens": "avoid",
3+
"bracketSpacing": true,
4+
"htmlWhitespaceSensitivity": "css",
5+
"insertPragma": false,
6+
"jsxSingleQuote": true,
7+
"printWidth": 120,
8+
"proseWrap": "preserve",
9+
"quoteProps": "as-needed",
10+
"requirePragma": false,
11+
"semi": true,
12+
"singleQuote": true,
13+
"tabWidth": 2,
14+
"trailingComma": "none",
15+
"useTabs": false,
16+
"overrides": [
17+
{
18+
"files": [
19+
"js/**/*.js"
20+
],
21+
"options": {
22+
"semi": false
23+
}
24+
}
25+
]
26+
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
All notable changes to this template will be documented in this file.
4+
5+
## [1.0.0] - [2022-02-11]
6+
7+
### Added
8+
9+
- Initial Release

0 commit comments

Comments
 (0)