2020-10-21 17:56:01 +02:00
|
|
|
{
|
|
|
|
|
2021-12-01 15:01:38 +01:00
|
|
|
/**
|
|
|
|
* Formatting.
|
|
|
|
*/
|
|
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
|
|
"[html]": {
|
|
|
|
"editor.defaultFormatter": "vscode.html-language-features",
|
|
|
|
},
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"eslint.format.enable": true,
|
|
|
|
"html.format.endWithNewline": true,
|
|
|
|
"html.format.wrapLineLength": 140,
|
|
|
|
"files.trimFinalNewlines": true,
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config files.
|
|
|
|
*/
|
2020-10-21 17:56:01 +02:00
|
|
|
"files.associations": {
|
2021-02-01 17:27:28 +01:00
|
|
|
"moodle.config.json": "jsonc",
|
2021-05-05 17:37:38 +02:00
|
|
|
"moodle.config.*.json": "jsonc",
|
2020-10-21 17:56:01 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
}
|