Skip to content

Instantly share code, notes, and snippets.

@wonism
Created December 31, 2020 02:10
Show Gist options
  • Select an option

  • Save wonism/f2b6c1e8494f751ed81d7b400e2d9ec7 to your computer and use it in GitHub Desktop.

Select an option

Save wonism/f2b6c1e8494f751ed81d7b400e2d9ec7 to your computer and use it in GitHub Desktop.
.vim/coc-settings.json
{
"coc.preferences.jumpCommand": "split",
"coc.preferences.formatOnType": true,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.autoFixOnSave": true,
"eslint.filetypes": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"prettier.disableSuccessMessage": true,
"tsserver.formatOnType": true
}
@wonism
Copy link
Author

wonism commented Jan 4, 2021

{
  "coc.preferences.formatOnType": false,
  "coc.preferences.formatOnSaveFiletypes": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ],
  "eslint.autoFixOnSave": true,
  "eslint.filetypes": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
  "eslint.nodePath": ".yarn/sdks",
  "eslint.options": {
    "configFile": ".eslintrc.js"
  },
  "eslint.packageManager": "yarn",
  "prettier.disableSuccessMessage": true,
  "prettier.formatterPriority": -1,
  "prettier.singleQuote": true,
  "tsserver.formatOnType": true,
  "tsserver.tsdk": ".yarn/sdks/typescript/lib"
}

@wonism
Copy link
Author

wonism commented Feb 23, 2022

{
  "coc.preferences.jumpCommand": "split",
  "coc.preferences.formatOnType": true,
  "coc.preferences.formatOnSaveFiletypes": [],
  "eslint.autoFixOnSave": false,
  "eslint.filetypes": [],
  "prettier.disableSuccessMessage": true,
  "tsserver.formatOnType": true
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment