conflict with the eslint-config-standard
See original GitHub issueTell us about your environment
- **ESLint Version:^5.3.0
- **eslint-plugin-vue Version:^5.0.0-beta.2
- Node Version:
**Please show your full configuration:v8.11.1
"eslintConfig": {
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module"
},
"extends": [
"plugin:vue/recommended",
"standard"
]
}
What did you do? Please include the actual source code causing the issue.
alert(1)
What did you expect to happen?
throw error like 'alert' is not defined no-undef
What actually happened? Please include the actual, raw output from ESLint. just ignore
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Dependency conflict when upgrading eslint-plugin-promise to ...
I want to upgrade eslint-plugin-promise from 4.3.1 to 5.1.0 . However, this results in unresolvable dependencies: ❯ npm install npm ERR! code ...
Read more >I am having a conflict error between eslint configuation and ...
I am trying to run a react project in development but I got the following error: Plugin "react" was conflicted between "../.eslintrc.json" ...
Read more >User Guide | eslint-plugin-vue
Conflict with Prettier #. Use eslint-config-prettier for Prettier not to conflict with the shareable config provided by this plugin. Example .
Read more >JavaScript Standard Style
This sets standard as your only linter and fixer for javascript files and so prevents conflicts with eslint. For linting and automatic fixing...
Read more >eslint-config-kouts - npm
npm i -D eslint prettier@2 eslint-config-kouts eslint-config-standard eslint-plugin-html eslint-plugin-import eslint-plugin-n ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@ota-meshi OK,I got it.Thanks again.
@fancyboynet I’m glad that your issue has been resolved!
The
configprovided by this plugin does not override anything other than the rules added by this plugin. In other settings, this plugin’sconfigwill setparser,parserOptionsandenvas in the following source code. If there is a problem for you, you need to overwrite each with your settings.https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/configs/base.js
(The
parseris the setting required to work with this plugin.)