bencodezen / vue-enterprise-boilerplate

An ever-evolving, very opinionated architecture and dev environment for new Vue SPA projects using Vue CLI.
7.78k stars 1.32k forks source link

Typo on .vscode workplace settings #85

Closed vrebel closed 6 years ago

vrebel commented 6 years ago

Not sure if it's an OS specific issue, but on Linux I had to change the eslint autoFix configuration from

"eslint.validate": [{
            "language": "javascript",
            "autofix": true
        },
        {
            "language": "javascriptreact",
            "autofix": true
        },
        {
            "language": "vue",
            "autofix": true
        },
        {
            "language": "vue-html",
            "autofix": true
        },
        {
            "language": "html",
            "autofix": true
        }
    ],

to

"eslint.validate": [{
            "language": "javascript",
            "autoFix": true
        },
        {
            "language": "javascriptreact",
            "autoFix": true
        },
        {
            "language": "vue",
            "autoFix": true
        },
        {
            "language": "vue-html",
            "autoFix": true
        },
        {
            "language": "html",
            "autoFix": true
        }
    ],

Otherwise auto-fix on save won't work.

chrisvfritz commented 6 years ago

@vrebel Thanks!