Lint with eslint on save

This commit is contained in:
Michael Mandl 2021-01-18 08:43:33 +01:00
parent 4dcab39d5b
commit 0feb6580b1
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7

View file

@ -1,16 +1,18 @@
{
"coc.preferences.formatOnSaveFiletypes": [
"cpp",
"javascript",
"typescript",
"typescriptreact",
"json",
"markdown",
"python",
"rust",
"toml",
"yaml"
],
"clangd.path": "/home/mandlm/.config/coc/extensions/coc-clangd-data/install/11.0.0/clangd_11.0.0/bin/clangd",
"eslint.format.enable": true
"coc.preferences.formatOnSaveFiletypes": [
"cpp",
"javascript",
"typescript",
"typescriptreact",
"json",
"markdown",
"python",
"rust",
"toml",
"yaml"
],
"clangd.path": "/home/mandlm/.config/coc/extensions/coc-clangd-data/install/11.0.0/clangd_11.0.0/bin/clangd",
"eslint.autoFixOnSave": true,
"eslint.format.enable": true,
"eslint.packageManager": "yarn"
}