前端入職項目問題總結

新公司熟悉項目遇到的問題總結

  • react項目、VSCODE配置eslint保存格式化
{
    "editor.fontFamily": "Source Code Pro, Consolas, 'Courier New', monospace",
    "workbench.colorTheme": "One Dark Pro",
    "git.path": "C:/Program Files/Git/bin/git.exe",
    "editor.formatOnSave": true,
    "eslint.validate": [
        "javascript",
        "javascriptreact"
    ],
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
    }
}
  • git重置密碼
git config --system --unset credential.helper
git config --global credential.helper store 

輸入結束之後就會提示重新輸入git賬號密碼

TODO 待更新

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章