Error: No ESLint configuration found.

vue open project report: Error: No ESLint configuration found.

By the impact of the epidemic in the home office, when, before the company will do (vue project) project pulled down and found an error in the startup project will copy down the catalog and compare before and found less related js file: .eslintrc .js, because some of the hidden files are not copy down, like on this. eslintrc.js
Here Insert Picture Descriptionerror tips

1. copy down the catalog
Here Insert Picture Description
directory project can be started after 2.
Here Insert Picture Description
3. .eslintrc.js code

// https://eslint.org/docs/user-guide/configuring

module.exports = {
    root: true,
    parserOptions: {
        parser: 'babel-eslint'
    },
    env: {
        browser: true,
    },
    extends: [
        // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
        // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
        'plugin:vue/essential',
        // https://github.com/standard/standard/blob/master/docs/RULES-en.md
        'standard'
    ],
    // required to lint *.vue files
    plugins: [
        'vue'
    ],
    // add your custom rules here
    rules: {
        // allow async-await
        'generator-star-spacing': 'off',
        // allow debugger during development
        'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
    }
}

After my project can be started

Reference Document
https://blog.csdn.net/lianan999/article/details/88538429

Published an original article · won praise 0 · Views 12

Guess you like

Origin blog.csdn.net/weixin_45045751/article/details/104265703