2020-10-21 15:56:01 +00:00
|
|
|
{
|
|
|
|
|
2021-12-01 14:01:38 +00: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,
|
2022-03-30 05:55:30 +00:00
|
|
|
"files.eol": "\n",
|
2021-12-01 14:01:38 +00:00
|
|
|
"files.trimFinalNewlines": true,
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config files.
|
|
|
|
*/
|
2020-10-21 15:56:01 +00:00
|
|
|
"files.associations": {
|
2021-02-01 16:27:28 +00:00
|
|
|
"moodle.config.json": "jsonc",
|
2021-05-05 15:37:38 +00:00
|
|
|
"moodle.config.*.json": "jsonc",
|
2020-10-21 15:56:01 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
}
|