全局配置就相当于给vscode配置了一个eslint规则,这个规则,只要使用vscode都要遵守这个规则 和
    啥项目无关
    给当前项目配置eslint规则,这个规则,只对当前项目起到约束,在新建一个项目,新的项目,不会受到
    这个eslint的约束
    image.png
    image.png
    image.png
    image.png
    部分eslint全局配置代码

    1. {
    2. "liveServer.settings.donotShowInfoMsg": true,
    3. "files.autoSave": "onWindowChange",
    4. "editor.fontSize": 16,
    5. "editor.fontFamily": "Consolas, 'Courier New', monospace",
    6. "emmet.variables": {
    7. "lang": "zh-CN"
    8. },
    9. // #值设置为true时,每次保存的时候自动格式化;值设置为false时,代码格式化请按shift+alt+F
    10. "editor.formatOnType": true,
    11. "editor.tokenColorCustomizations": {
    12. "comments": "#82e0aa" // 注释
    13. },
    14. "workbench.iconTheme": "vscode-icons",
    15. "git.ignoreWindowsGit27Warning": true,
    16. "launch": {
    17. "configurations": [],
    18. "compounds": []
    19. },
    20. "explorer.confirmDelete": false,
    21. "vsicons.dontShowNewVersionMessage": true,
    22. "cssrem.autoRemovePrefixZero": false,
    23. "cssrem.fixedDigits": 3,
    24. "cssrem.rootFontSize": 24,
    25. "workbench.colorTheme": "Meng Dark Pro",
    26. // eslint start 保存时自动格式化代码
    27. "editor.formatOnSave": true,
    28. // eslint配置项,保存时自动修复错误
    29. "editor.codeActionsOnSave": {
    30. "source.fixAll": true
    31. }
    32. }