Skip to content

Commit 92e38d7

Browse files
author
jonatansalas
committed
chore: initial commit
0 parents  commit 92e38d7

24 files changed

+17785
-0
lines changed

‎.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": ["@babel/preset-typescript", "@babel/preset-react"],
3+
"plugins": [
4+
"@babel/plugin-proposal-object-rest-spread",
5+
"@babel/plugin-proposal-class-properties",
6+
"@babel/plugin-syntax-dynamic-import"
7+
]
8+
}

‎.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
plugins: [
3+
// ...
4+
'react-hooks',
5+
],
6+
extends: 'react-app',
7+
rules: {
8+
'no-console': ['error', { allow: ['warn', 'error'] }],
9+
'no-debugger': 'error',
10+
'no-var': 'error',
11+
'react-hooks/rules-of-hooks': 'error',
12+
'react-hooks/exhaustive-deps': 'warn',
13+
},
14+
};

‎.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

‎.github/lock.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Configuration for lock-threads - https://github.com/dessant/lock-threads
2+
3+
# Number of days of inactivity before a closed issue or pull request is locked
4+
daysUntilLock: 180
5+
# Comment to post before locking. Set to `false` to disable
6+
lockComment: >
7+
This issue has been automatically locked since there has not been
8+
any recent activity after it was closed.
9+
If you can still reproduce this issue then please open a new issue and fill out
10+
[the entire issue template](https://github.com/blackboxvision/react-particles/blob/master/ISSUE_TEMPLATE.md)
11+
to ensure that we have enough information to address your issue. Thanks!
12+
# Issues or pull requests with these labels will not be locked
13+
exemptLabels:
14+
- help-wanted
15+
# Limit to only `issues` or `pulls`
16+
only: issues

‎.github/no-response.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Configuration for probot-no-response - https://github.com/probot/no-response
2+
3+
# Number of days of inactivity before an issue is closed for lack of response
4+
daysUntilClose: 28
5+
6+
# Label requiring a response
7+
responseRequiredLabel: more-information-needed
8+
9+
# Comment to post when closing an issue for lack of response. Set to `false` to disable.
10+
closeComment: >
11+
This issue has been automatically closed because there has been no response
12+
to our request for more information from the original author. With only the
13+
information that is currently in the issue, we don't have enough information
14+
to take action. Please reach out if you have or find the answers we need so
15+
that we can investigate further.

‎.github/stale.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 365
5+
# Number of days of inactivity before a stale Issue or Pull Request is closed
6+
daysUntilClose: 14
7+
# Issues or Pull Requests with these labels will never be considered stale
8+
exemptLabels:
9+
- regression
10+
- security
11+
- triaged
12+
# Label to use when marking as stale
13+
staleLabel: stale
14+
# Comment to post when marking as stale. Set to `false` to disable
15+
markComment: >
16+
Thanks for your contribution!
17+
18+
This issue has been automatically marked as stale because it has not had
19+
recent activity.
20+
21+
If you would like this issue to remain open:
22+
23+
1. Verify that you can still reproduce the issue in the latest version of react-particles
24+
1. Comment that the issue is still reproducible and include:
25+
* What version of react-particles you reproduced the issue on
26+
* What OS and version you reproduced the issue on
27+
* What steps you followed to reproduce the issue
28+
29+
Issues that are labeled as triaged will not be automatically marked as stale.
30+
# Comment to post when removing the stale label. Set to `false` to disable
31+
unmarkComment: false
32+
# Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable
33+
closeComment: false
34+
# Limit to only `issues` or `pulls`
35+
only: issues

‎.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pkg
2+
.env
3+
coverage
4+
node_modules
5+
storybook-static

‎.prettierrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
trailingComma: 'es5',
3+
singleQuote: true,
4+
};

‎.storybook/addon.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import '@storybook/addon-actions/register';
2+
import '@storybook/addon-knobs/register';
3+
import '@storybook/addon-links/register';

0 commit comments

Comments
 (0)