Skip to content

Commit b9aeac9

Browse files
committed
feat(init): added materio html free
0 parents  commit b9aeac9

File tree

244 files changed

+62668
-0
lines changed

Some content is hidden

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

244 files changed

+62668
-0
lines changed

.browserslistrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
>= 0.5%
2+
last 4 major 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+
}

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
contact_links:
2+
- name: Raise Support
3+
url: https://tools.themeselection.com/github/raise-support
4+
about: Raise support using form provided in this link

.github/workflows/handle-issue.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: 'Handle issue'
2+
on:
3+
issues:
4+
types: [opened,reopened]
5+
6+
# ℹ️ Required by gh cli
7+
env:
8+
GH_TOKEN: ${{ github.token }}
9+
10+
jobs:
11+
handle_new_issue:
12+
if: github.event.action == 'opened'
13+
runs-on: ubuntu-latest
14+
name: Handle new issue
15+
steps:
16+
- name: Greet & Apply label
17+
uses: themeselection/gh-action-comment-on-new-issue@v4.0.1
18+
with:
19+
message: |
20+
### 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">
21+
Thanks a lot for purchasing our theme and getting in touch with us.
22+
23+
Your support has been raised, our response time could be 1 - 2 business days.
24+
In the meantime, feel free to check out related issues in the repository for more help.
25+
26+
We really appreciate your patience.
27+
raise-support-using-form-msg: |
28+
Thanks for creating an issue ☺️
29+
30+
It seems our [raise support](https://tools.themeselection.com/github/raise-support) form was skipped while creating this issue.
31+
Please consider raising support via our support form only which will create issues using essential information we need to resolve your query quickly.
32+
33+
This will help in growing an excellent community, where:
34+
35+
- Other people can get it resolved if they have the same query
36+
- We can easily understand your query
37+
- Community at a later stage can also provide you solutions/suggestions
38+
39+
Closing this issue.
40+
Regards.
41+
42+
- name: Find duplicates
43+
uses: wow-actions/potential-duplicates@v1.0.9
44+
with:
45+
GITHUB_TOKEN: ${{ github.token }}
46+
label: duplicate
47+
comment: >
48+
Potential duplicates: {{#issues}}
49+
- #{{ number }} _({{ accuracy }}% Match)_
50+
{{/issues}}
51+
52+
remove_awaiting_reply_label:
53+
if: github.event.action == 'reopened'
54+
runs-on: ubuntu-latest
55+
name: Remove Awaiting Reply Label
56+
steps:
57+
- run: gh issue edit --remove-label awaiting-reply --repo ${{ github.repository }}
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-solanki/gh-action-toggle-awaiting-reply-label@v2.1.1
13+
with:
14+
label: awaiting-reply
15+
only-if-label: support

.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 it has no 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 no 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: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
# Excludes generated
49+
/dist
50+
/build
51+
/tmp
52+
/temp
53+
54+
# Assets
55+
**/assets/vendor
56+
# **/static/vendor
57+
58+
# HTML files
59+
/html-demo
60+
/html-starter-demo
61+
62+
# Package Lock files
63+
/package-lock.json

.prettierrc.json

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

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-09-20]
6+
7+
### Added
8+
9+
- Initial Release

0 commit comments

Comments
 (0)