{ "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})", "[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" }, "html.format.templating": true, "html.format.wrapAttributes": "preserve", "html.format.wrapLineLength": 200, "html.format.indentHandlebars": true }, "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": "Python Debugger: Current File", "type": "debugpy", "request": "launch", "program": "${workspaceFolder}/builder.py", "console": "integratedTerminal", "args": [ "-p", "${workspaceFolder}/test", "-w", "file://${workspaceFolder}/test", "-t", "Pictures", "--theme", "themes/kjoe.css", "--use-fancy-folders", "-n" ], "postDebugTask": "Delete Lockfile" } ] }, "tasks": { "version": "2.0.0", "tasks": [ { "label": "Delete Lockfile", "command": "rm -f ${workspaceFolder}/test/.lock", "type": "shell", "problemMatcher": [], "isBackground": true } ] } }