-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flood: rearrange, remove misc files and reformat
- Loading branch information
Showing
86 changed files
with
700 additions
and
917 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{ | ||
"extends": ["plugin:@typescript-eslint/recommended", "prettier", "prettier/@typescript-eslint"], | ||
|
||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
}, | ||
|
||
"env": { | ||
"browser": false, | ||
"node": true | ||
}, | ||
|
||
"rules": { | ||
"import/no-extraneous-dependencies": 0, | ||
"no-underscore-dangle": [2, {"allow": ["_id"]}], | ||
"@typescript-eslint/lines-between-class-members": ["error", "always", {"exceptAfterSingleLine": true}], | ||
"@typescript-eslint/no-unused-vars": ["error", {"argsIgnorePattern": "^_"}] | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.js", "*.jsx"], | ||
"extends": ["prettier", "prettier/react"], | ||
"parser": "babel-eslint", | ||
"rules": { | ||
"@typescript-eslint/no-var-requires": 0 | ||
} | ||
} | ||
] | ||
} |
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
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 |
---|---|---|
@@ -1,44 +1,54 @@ | ||
--- | ||
name: "🐞 Bug Report" | ||
about: "Report a general bug in flood" | ||
name: '🐞 Bug Report' | ||
about: 'Report a general bug in flood' | ||
--- | ||
|
||
Type: Bug Report | ||
|
||
- [ ] Try to follow the update procedure described in the README and try again before opening this issue. | ||
- [ ] Please check the [F.A.Q.](https://github.com/Flood-UI/flood/wiki/F.A.Q.). | ||
- [ ] Please check the [Troubleshooting](https://github.com/Flood-UI/flood/wiki/Troubleshooting) wiki section. | ||
|
||
## Your Environment | ||
|
||
<!--- Include as many relevant details about the environment you experienced the bug in --> | ||
* Version used: | ||
+ Version (stable release) `git --no-pager tag` | ||
+ Commit ID (development release) `git --no-pager log -1` | ||
* Environment name and version: | ||
+ Node.js version `node --version` | ||
+ npm version `npm --version` | ||
+ Web browser `name and version` | ||
* Operating System and version: | ||
|
||
- Version used: | ||
- Version (stable release) `git --no-pager tag` | ||
- Commit ID (development release) `git --no-pager log -1` | ||
- Environment name and version: | ||
- Node.js version `node --version` | ||
- npm version `npm --version` | ||
- Web browser `name and version` | ||
- Operating System and version: | ||
|
||
## Summary | ||
|
||
<!--- Provide a general summary of the issue in the Title above --> | ||
|
||
## Expected Behavior | ||
|
||
<!--- (Optional) Tell us what should happen --> | ||
|
||
## Current Behavior | ||
|
||
<!--- (Optional) Tell us what happens instead of the expected behavior --> | ||
|
||
## Possible Solution | ||
|
||
<!--- (Optional) suggest a fix/reason for the bug, --> | ||
<!--- or ideas how to implement the addition or change --> | ||
|
||
## Steps to Reproduce | ||
|
||
<!--- Provide a link to a live example, or an unambiguous set of steps to --> | ||
<!--- reproduce this bug. Include code to reproduce, if relevant --> | ||
|
||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
## Context | ||
|
||
<!--- (Optional) What are you trying to accomplish? --> |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
--- | ||
name: "💡 Feature Request" | ||
about: "Suggest an idea for this project" | ||
name: '💡 Feature Request' | ||
about: 'Suggest an idea for this project' | ||
--- | ||
|
||
Type: Feature Request | ||
|
||
- [ ] If you want to contribute to the project please review the [contributing guidelines](https://github.com/Flood-UI/flood/blob/master/.github/CONTRIBUTING.md). | ||
|
||
## Summary | ||
<!--- Provide a general summary of the feature in the Title above --> | ||
|
||
<!--- Provide a general summary of the feature in the Title above --> | ||
|
||
## Idea of implementation | ||
|
||
<!--- Suggest ideas how to implement the addition or change --> |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
name: "🔒 Security Vulnerability" | ||
about: "Report a security vulnerability in flood" | ||
name: '🔒 Security Vulnerability' | ||
about: 'Report a security vulnerability in flood' | ||
--- | ||
|
||
PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, SEE BELOW. | ||
|
||
If you discover a security vulnerability within flood, please send an e-mail to jfurrow ([email protected]) or noraj ([email protected]). |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
--- | ||
name: "📚 Documentation Issue" | ||
name: '📚 Documentation Issue' | ||
about: 'Report an issue or missing part in the documentation' | ||
--- | ||
|
||
Type: Documentation Issue | ||
|
||
## Summary | ||
|
||
<!--- Provide a general summary of the issue in the Title above --> |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
name: "❓ Question" | ||
about: "Ask your questions here" | ||
name: '❓ Question' | ||
about: 'Ask your questions here' | ||
--- | ||
|
||
Type: Question | ||
|
||
## Question |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
name: "🎙️ Discussion" | ||
about: "Start a discussion here" | ||
name: '🎙️ Discussion' | ||
about: 'Start a discussion here' | ||
--- | ||
|
||
Type: Discussion | ||
|
||
## Discussion |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
name: "🆘 Support" | ||
about: "Ask for help on Discord" | ||
name: '🆘 Support' | ||
about: 'Ask for help on Discord' | ||
--- | ||
|
||
If you need support, ask on Discord https://discord.gg/Z7yR5Uf |
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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Labels | ||
|
||
Category | Label(s) | Color(s) | ||
--- | --- | --- | ||
Platform | ![](bsd.png) ![](docker.png) ![](linux.png) ![](macOS.png) ![](windows.png) | #BFD4F2 | ||
Problems | ![](bug.png) ![](security.png) | #EE3F46 | ||
Severity | ![](critical.png) | #B60205 | ||
Type | ![](code.png) ![](design.png) ![](documentation.png) ![](test.png) | #FFC274 | ||
Feedback | ![](discussion.png) ![](question.png) | #CC317C | ||
Improvements | ![](enhancement.png) ![](optimization.png) ![](performance.png) | #5EBEFF | ||
Help | ![](help%20wanted.png) | #76C3A9 | ||
Additions | ![](feature.png) | #90C954 | ||
Pending | ![](can't%20reproduce.png) ![](in%20progress.png) ![](more%20info%20needed.png) ![](waiting%20feedback.png) ![](watchlist.png) | #FBCA04 | ||
Inactive | ![](duplicate.png) ![](invalid.png) ![](not%20a%20bug.png) ![](on%20hold.png) ![](wontfix.png) | #D2DAE1 | ||
| Category | Label(s) | Color(s) | | ||
| ------------ | ------------------------------------------------------------------------------------------------------------------------------ | -------- | | ||
| Platform | ![](bsd.png) ![](docker.png) ![](linux.png) ![](macOS.png) ![](windows.png) | #BFD4F2 | | ||
| Problems | ![](bug.png) ![](security.png) | #EE3F46 | | ||
| Severity | ![](critical.png) | #B60205 | | ||
| Type | ![](code.png) ![](design.png) ![](documentation.png) ![](test.png) | #FFC274 | | ||
| Feedback | ![](discussion.png) ![](question.png) | #CC317C | | ||
| Improvements | ![](enhancement.png) ![](optimization.png) ![](performance.png) | #5EBEFF | | ||
| Help | ![](help%20wanted.png) | #76C3A9 | | ||
| Additions | ![](feature.png) | #90C954 | | ||
| Pending | ![](can't%20reproduce.png) ![](in%20progress.png) ![](more%20info%20needed.png) ![](waiting%20feedback.png) ![](watchlist.png) | #FBCA04 | | ||
| Inactive | ![](duplicate.png) ![](invalid.png) ![](not%20a%20bug.png) ![](on%20hold.png) ![](wontfix.png) | #D2DAE1 | | ||
|
||
Note: in order to take a sharp screenshot of labels with Firefox: Right click the label => Inspect element => Right click the element on the inspector => Screenshot Node |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.