mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-09-25 12:50:38 +00:00
14 lines
No EOL
659 B
JSON
14 lines
No EOL
659 B
JSON
{
|
|
// Format a file on save. A formatter must be available, the file must not be auto-saved, and editor must not be shutting down.
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": true,
|
|
// Enable/disable JavaScript validation. (For Flow)
|
|
"javascript.validate.enable": false,
|
|
// Enable/disable default JavaScript formatter (For Prettier)
|
|
"javascript.format.enable": false,
|
|
// Use 'prettier-eslint' instead of 'prettier'. Other settings will only be fallbacks in case they could not be inferred from eslint rules.
|
|
"prettier.eslintIntegration": true,
|
|
"files.eol": "\n",
|
|
"typescript.check.workspaceVersion": false
|
|
} |