-
-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # CHANGELOG.md # package-lock.json
- Loading branch information
Showing
124 changed files
with
50,938 additions
and
11,746 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 |
---|---|---|
@@ -1,7 +1,17 @@ | ||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
indent_size = 2 | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
max_line_length = 100 | ||
|
||
[*.{md,markdown}] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = false |
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,42 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: ["bug", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This issue form is for reporting bugs only! | ||
If you have a feature request, please use [feature_request](/new?template=feature_request.yml) | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened | ||
description: >- | ||
A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: What did you expect to happen | ||
description: >- | ||
A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: How to reproduce | ||
description: >- | ||
Minimal and precise steps to reproduce this bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional information | ||
description: | | ||
If you have any additional information for us, use the field below. | ||
Please note, you can attach screenshots or screen recordings here, by | ||
dragging and dropping files in the field below. |
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Fluidd Discord | ||
url: https://discord.gg/GZ3D5tqfcF/ | ||
about: Quickest way to get in contact |
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,40 @@ | ||
name: Feature Request | ||
description: Have a cool feature in mind? Use this template! | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This issue form is for feature requests only! | ||
If you've found a bug, please use [bug_report](/new?template=bug_report.yml) | ||
- type: textarea | ||
id: problem-description | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe | ||
description: >- | ||
A clear and concise description of what the problem is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution-description | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: >- | ||
A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: possible-alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: >- | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional information | ||
description: | | ||
If you have any additional information for us, use the field below. | ||
Please note, you can attach screenshots or screen recordings here, by | ||
dragging and dropping files in the field below. |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
die () { | ||
cat <<'EOF' | ||
Error: Commit messages should follow the conventional commits standard, and should have a Signed-off-by line, for example: | ||
``` | ||
feat: My feature. | ||
Some description. | ||
Signed-off-by: Your Name <your email address> | ||
``` | ||
EOF | ||
|
||
exit 1 | ||
} | ||
|
||
COMMIT_MESSAGE=$(cat $1) | ||
|
||
COMMIT_HEAD="^merge.+|(feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert|types)(\(.+\))?: .{1,50}" | ||
COMMIT_SIGNED_OFF="signed-off-by: .*<.*@.*>" | ||
|
||
if ! echo "$COMMIT_MESSAGE" | grep -iqE "$COMMIT_HEAD"; then | ||
die | ||
fi | ||
|
||
if ! echo "$COMMIT_MESSAGE" | grep -iqE "$COMMIT_SIGNED_OFF"; then | ||
die | ||
fi |
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,8 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
FILES_TO_LINT=$(git diff --cached --name-only --diff-filter=ACM | grep -iE "\.(js|jsx|ts|tsx|vue)$" || true) | ||
|
||
if [ -n "$FILES_TO_LINT" ]; then | ||
npx --no-install vue-cli-service lint --no-fix $FILES_TO_LINT | ||
fi |
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 +1 @@ | ||
14.17.1 | ||
16.13.2 |
Oops, something went wrong.