JaeYeopHan / tip-archive

📦 Archiving various development tips. If you watch this repository, you can get issues related to the newly registered development tip from the GitHub feed.
https://www.facebook.com/Jbee.dev/
245 stars 8 forks source link

Stylelint autoSave vscode config #67

Open JaeYeopHan opened 4 years ago

JaeYeopHan commented 4 years ago
{
  "editor.formatOnSave": true,
  "javascript.format.enable": false,
  "eslint.alwaysShowStatus": true,
  "eslint.options": {
    "extensions": [".html", ".ts", ".js", ".tsx"]
  },
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "files.autoSaveDelay": 500,
  "eslint.packageManager": "yarn",
  "typescript.tsdk": "node_modules/typescript/lib"
}

"files.autoSaveDelay": 500

https://github.com/stylelint/vscode-stylelint/issues/35