How to disable ESLint in vue-cli?

前端 未结 13 1047
灰色年华
灰色年华 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:07

    One of the most simple way is just setting an .eslintignore file with you want to disabled folders & files.

    demo

    /build/
    /config/
    /dist/
    /*.js
    /test/unit/coverage/
    
    /000-xyz/
    
    

    Ref: https://github.com/vuejs-templates/webpack/issues/73#issuecomment-355149342

提交回复
热议问题