How to disable ESLint in vue-cli?

前端 未结 13 1092
灰色年华
灰色年华 2020-12-02 09:28

How do I go about disabling ESlint in project generated with vue-cli?

preLoaders: [
  {
    test: /\\.vue$/,
    loader: \'eslint\         


        
13条回答
  •  悲哀的现实
    2020-12-02 10:25

    There are some out-of-date answers here.

    Because vue-cli 3 is using a zero configuration approach, the way to disable it is to just uninstall the module:

    npm remove @vue/cli-plugin-eslint
    

提交回复
热议问题