mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 11:09:26 +00:00
151 lines
4.8 KiB
Plaintext
151 lines
4.8 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "./",
|
|
"name": "StaticGalleryBuilder"
|
|
}
|
|
],
|
|
"settings": {
|
|
"files.associations": {
|
|
"**/*.html.j2": "jinja-html",
|
|
"**/*.css.j2": "jinja-css",
|
|
"**/*.css": "css",
|
|
},
|
|
"python.analysis.inlayHints.callArgumentNames": "off",
|
|
"python.analysis.inlayHints.functionReturnTypes": false,
|
|
"python.analysis.inlayHints.variableTypes": false,
|
|
"pylint.args": [
|
|
"--disable=C0111",
|
|
"--disable=C0301",
|
|
"--good-names-rgxs=^[_a-z][_a-z0-9]?$"
|
|
],
|
|
"editor.formatOnSave": false,
|
|
"black-formatter.interpreter": [
|
|
"/usr/bin/python3"
|
|
],
|
|
"black-formatter.args": [
|
|
"-l 140"
|
|
],
|
|
"gitblame.inlineMessageEnabled": true,
|
|
"gitblame.inlineMessageFormat": "${author.name}, ${time.ago} • ${commit.summary}",
|
|
"gitblame.statusBarMessageFormat": "${author.name} (${time.ago})",
|
|
"html.format.templating": true,
|
|
"html.format.wrapAttributes": "preserve",
|
|
"html.format.wrapLineLength": 200,
|
|
"html.format.indentHandlebars": true,
|
|
"html.suggest.html5": true,
|
|
"html.hover.documentation": true,
|
|
"html.validate.scripts": true,
|
|
"html.validate.styles": true,
|
|
"prettier.htmlWhitespaceSensitivity": "css",
|
|
"json.schemaDownload.enable": true,
|
|
"json.schemas": [
|
|
{
|
|
"fileMatch": [
|
|
"manifest.json.j2"
|
|
],
|
|
"url": "https://json.schemastore.org/web-manifest-combined.json"
|
|
}
|
|
],
|
|
"emmet.includeLanguages": {
|
|
"jinja-html": "html",
|
|
"jinja-css": "css",
|
|
"jinja-js": "javascript",
|
|
"jinja-json": "json"
|
|
},
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
},
|
|
"[css]": {
|
|
"editor.defaultFormatter": "vscode.css-language-features"
|
|
},
|
|
"[jinja-html]": {
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
},
|
|
"[jinja-css]": {
|
|
"editor.defaultFormatter": "vscode.css-language-features"
|
|
},
|
|
"[jinja-js]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
},
|
|
"extensions": {
|
|
"recommendations": [
|
|
"ms-python.black-formatter",
|
|
"ms-python.python",
|
|
"ms-python.vscode-pylance",
|
|
"ms-python.debugpy",
|
|
"ms-python.pylint",
|
|
"samuelcolvin.jinjahtml",
|
|
"vscode.html-language-features",
|
|
"vscode.css-language-features",
|
|
"waderyan.gitblame",
|
|
]
|
|
},
|
|
"launch": {
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Testfolder",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/builder.py",
|
|
"console": "integratedTerminal",
|
|
"args": [
|
|
"-p",
|
|
"${workspaceFolder}/test",
|
|
"-w",
|
|
"file://${workspaceFolder}/test",
|
|
"-t",
|
|
"Pictures",
|
|
"--theme",
|
|
"themes/default.css",
|
|
"--use-fancy-folders",
|
|
"--web-manifest",
|
|
"-n"
|
|
],
|
|
"postDebugTask": "Delete Lockfile"
|
|
},
|
|
{
|
|
"name": "woek",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/builder.py",
|
|
"console": "integratedTerminal",
|
|
"args": [
|
|
"-p",
|
|
"/home/user/woek/Pictures",
|
|
"-w",
|
|
"file:///home/user/woek/Pictures",
|
|
"-t",
|
|
"Pictures",
|
|
"--theme",
|
|
"themes/kjoe.css",
|
|
"--use-fancy-folders",
|
|
"--web-manifest",
|
|
"-n"
|
|
],
|
|
"postDebugTask": "Delete Lockfile 2"
|
|
}
|
|
]
|
|
},
|
|
"tasks": {
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Delete Lockfile",
|
|
"command": "rm -f ${workspaceFolder}/test/.lock",
|
|
"type": "shell",
|
|
"problemMatcher": [],
|
|
"isBackground": true
|
|
},
|
|
{
|
|
"label": "Delete Lockfile 2",
|
|
"command": "rm -f /home/user/woek/Pictures/.lock",
|
|
"type": "shell",
|
|
"problemMatcher": [],
|
|
"isBackground": true
|
|
}
|
|
]
|
|
}
|
|
} |