2021-02-17 16:16:39 +03:00
|
|
|
{
|
|
|
|
|
"name": "Frigate Dev",
|
|
|
|
|
"dockerComposeFile": "../docker-compose.yml",
|
|
|
|
|
"service": "dev",
|
2021-05-23 05:03:35 +03:00
|
|
|
"workspaceFolder": "/lab/frigate",
|
2021-02-17 16:16:39 +03:00
|
|
|
"extensions": [
|
|
|
|
|
"ms-python.python",
|
|
|
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
|
|
|
"mhutchie.git-graph",
|
|
|
|
|
"ms-azuretools.vscode-docker",
|
|
|
|
|
"streetsidesoftware.code-spell-checker",
|
|
|
|
|
"esbenp.prettier-vscode",
|
2022-02-26 22:11:00 +03:00
|
|
|
"ms-python.vscode-pylance",
|
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
|
"mikestead.dotenv",
|
|
|
|
|
"csstools.postcss",
|
|
|
|
|
"blanu.vscode-styled-jsx",
|
|
|
|
|
"bradlc.vscode-tailwindcss"
|
2021-02-17 16:16:39 +03:00
|
|
|
],
|
|
|
|
|
"settings": {
|
|
|
|
|
"python.linting.pylintEnabled": true,
|
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
|
"python.formatting.provider": "black",
|
2022-02-26 22:11:00 +03:00
|
|
|
"python.languageServer": "Pylance",
|
2021-02-17 16:16:39 +03:00
|
|
|
"editor.formatOnPaste": false,
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.formatOnType": true,
|
|
|
|
|
"files.trimTrailingWhitespace": true,
|
2022-02-26 22:11:00 +03:00
|
|
|
"eslint.workingDirectories": ["./web"],
|
|
|
|
|
"[json][jsonc]": {
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
|
},
|
|
|
|
|
"[jsx][js][tsx][ts]": {
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
|
|
|
"editor.codeActionsOnSave": [
|
|
|
|
|
"source.addMissingImports",
|
|
|
|
|
"source.fixAll.eslint"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"cSpell.ignoreWords": ["rtmp"],
|
|
|
|
|
"cSpell.words": ["preact"]
|
2021-02-17 16:16:39 +03:00
|
|
|
}
|
2021-05-05 01:12:35 +03:00
|
|
|
}
|