-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'developing/2.0.0' of https://github.com/sunnydanu/godev…
….run into feat(new-tool)--argon2-password-hashing-and-verification
- Loading branch information
Showing
797 changed files
with
44,217 additions
and
10,769 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
playwright-report | ||
coverage | ||
dist | ||
test-results |
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,39 +1,21 @@ | ||
/* eslint-env node */ | ||
require('@rushstack/eslint-patch/modern-module-resolution'); | ||
|
||
/** | ||
* @type {import('eslint').Linter.Config} | ||
*/ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'plugin:vue/vue3-recommended', | ||
'@vue/eslint-config-typescript/recommended', | ||
'@vue/eslint-config-prettier', | ||
'plugin:import/recommended', | ||
'./.eslintrc-auto-import.json', | ||
'@unocss', | ||
], | ||
extends: ['@antfu', './.eslintrc-auto-import.json', '@unocss'], | ||
|
||
settings: { | ||
'import/resolver': { typescript: { project: './tsconfig.app.json' } }, | ||
}, | ||
env: { | ||
'vue/setup-compiler-macros': true, | ||
}, | ||
rules: { | ||
'vue/multi-word-component-names': ['off'], | ||
'prettier/prettier': ['error'], | ||
'import/no-duplicates': ['error', { considerQueryString: true }], | ||
'import/order': ['error', { groups: [['builtin', 'external', 'internal']] }], | ||
'import/extensions': [ | ||
'error', | ||
'ignorePackages', | ||
{ | ||
js: 'never', | ||
ts: 'never', | ||
tsx: 'never', | ||
}, | ||
], | ||
'import/no-unresolved': ['error', { ignore: ['^virtual:'] }], | ||
'curly': ['error', 'all'], | ||
'@typescript-eslint/semi': ['error', 'always'], | ||
'@typescript-eslint/no-use-before-define': ['error', { allowNamedExports: true, functions: false }], | ||
'vue/no-empty-component-block': ['error'], | ||
'no-restricted-imports': ['error', { | ||
paths: [{ | ||
name: '@vueuse/core', | ||
importNames: ['useClipboard'], | ||
message: 'Please use local useCopy from src/composable/copy.ts instead of useClipboard.', | ||
}], | ||
}], | ||
}, | ||
}; |
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,2 +1,2 @@ | ||
github: | ||
- CorentinTh | ||
- sunnydanu |
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,48 @@ | ||
name: 🐞 Bug Report | ||
description: File a bug report. | ||
labels: ['bug', 'triage'] | ||
assignees: | ||
- CorentinTh | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! | ||
placeholder: Bug description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? If you have a screenshot, you can paste it here. | ||
placeholder: Tell us what you see! | ||
value: 'A bug happened!' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: System information | ||
description: What is you environment? You can use the `npx envinfo --system --browsers` command to get this information. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: app-type | ||
attributes: | ||
label: Where did you encounter the bug? | ||
options: | ||
- Public app (it-tools.tech) | ||
- A self hosted | ||
- Other (installations, docker, etc.) | ||
validations: | ||
required: true |
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 @@ | ||
blank_issues_enabled: false |
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,56 @@ | ||
name: 🚀 New feature proposal | ||
description: Propose a new feature/enhancement or tool idea for IT-Tools | ||
labels: ['enhancement', 'triage'] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for your interest in the project and taking the time to fill out this feature report! | ||
- type: dropdown | ||
id: request-type | ||
attributes: | ||
label: What type of request is this? | ||
options: | ||
- New tool idea | ||
- New feature for an existing tool | ||
- Deployment or CI/CD improvement | ||
- Self-hosting improvement | ||
- Other | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Clear and concise description of the feature you are proposing | ||
description: A clear and concise description of what the feature is. | ||
placeholder: 'Example: a token generator tool' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternative | ||
attributes: | ||
label: Is their example of this tool in the wild? | ||
description: Provide link to already existing tool (like websites, apps, cli, ...) or npm packages that could be used or provide inspiration for the feature. | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Any other context or screenshots about the feature request here. | ||
|
||
- type: checkboxes | ||
id: checkboxes | ||
attributes: | ||
label: Validations | ||
description: Before submitting the issue, please make sure you do the following | ||
options: | ||
- label: Check the feature is not already implemented in the project. | ||
required: true | ||
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate. | ||
required: true | ||
- label: Check that the feature can be implemented in a client side only app (IT-Tools is client side only, no server). | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.