1
0
mirror of https://github.com/XFox111/PasswordGeneratorExtension.git synced 2026-04-22 08:08:01 +03:00

Major 3.0: Complete overhaul of the codebase, new features, bugfixes and more (#223)

Complete overhaul for v3.0 (see related PR)
This commit is contained in:
Eugene Fox
2023-11-12 15:59:07 +03:00
committed by GitHub
parent 47888e4774
commit 163da852f6
79 changed files with 6576 additions and 10592 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"recommendations": [
"DNEK.auto-region-folder",
"eamodio.gitlens",
"jock.svg",
"firefox-devtools.vscode-firefox-debug",
"dbaeumer.vscode-eslint",
"github.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"bierner.github-markdown-preview",
"mrmlnc.vscode-scss",
"Gruntfuggly.todo-tree",
"redhat.vscode-yaml"
]
}
+52
View File
@@ -0,0 +1,52 @@
{
"json.schemas": [
{
"fileMatch": [
"/messages.json"
],
"url": "https://gist.github.com/XFox111/9528b76f9f02704d620d4edbf421e06b/raw/e77197276f0aa2994cceae4ddf4dcfcabdce9dcb/webext-locale-schema.json"
}
],
"editor.rulers": [
{
"column": 120
}
],
"editor.insertSpaces": false,
"files.insertFinalNewline": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"files.eol": "\n",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"css.format.braceStyle": "expand",
"css.format.maxPreserveNewLines": 3,
"css.format.spaceAroundSelectorSeparator": true,
"css.format.newlineBetweenSelectors": false,
"css.lint.compatibleVendorPrefixes": "warning",
"css.lint.duplicateProperties": "warning",
"css.lint.float": "warning",
"css.lint.unknownVendorSpecificProperties": "warning",
"css.lint.zeroUnits": "warning",
"scss.format.braceStyle": "expand",
"scss.format.maxPreserveNewLines": 3,
"scss.format.spaceAroundSelectorSeparator": true,
"scss.lint.compatibleVendorPrefixes": "warning",
"scss.lint.duplicateProperties": "warning",
"scss.lint.float": "warning",
"scss.lint.unknownVendorSpecificProperties": "warning",
"scss.lint.zeroUnits": "warning",
"html.format.maxPreserveNewLines": 3,
"html.format.wrapAttributes": "preserve",
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"javascript.format.placeOpenBraceOnNewLineForFunctions": true,
"javascript.format.semicolons": "insert",
"javascript.preferences.quoteStyle": "double",
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
"typescript.format.semicolons": "insert",
"typescript.preferences.quoteStyle": "double",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true
}
+80
View File
@@ -0,0 +1,80 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "yarn build",
"group":
{
"kind": "build",
"isDefault": true
},
"label": "Build: Chromium"
},
{
"type": "shell",
"command": "yarn build",
"group":
{
"kind": "build",
"isDefault": false
},
"label": "Build: Firefox",
"options": {
"env": {
"TARGET": "firefox"
}
}
},
{
"type": "shell",
"command": "yarn build",
"args": [
"--watch",
"--mode",
"development"
],
"group": "test",
"label": "Watch: Chromium"
},
{
"type": "shell",
"command": "yarn build",
"args": [
"--watch",
"--mode",
"development"
],
"group": "test",
"label": "Watch: Firefox",
"options": {
"env": {
"TARGET": "firefox"
}
}
},
{
"type": "shell",
"command": "yarn dev",
"group": "test",
"label": "Dev: Chromium"
},
{
"type": "shell",
"command": "yarn dev",
"group": "test",
"label": "Dev: Firefox",
"options": {
"env": {
"TARGET": "firefox"
}
}
},
{
"type": "shell",
"command": "yarn install",
"label": "Restore dependencies",
"group": "build"
}
]
}