-
-
Notifications
You must be signed in to change notification settings - Fork 692
Closed
Labels
Description
Tell us about your environment
- ESLint Version: 4.1.1
- eslint-plugin-vue Version: 3.3.0
- Node Version: 8.1.2
Please show your full configuration:
{
"extends": [
"eslint:recommended",
"plugin:vue/recommended" // or 'plugin:vue/base'
],
"rules": {
// override/add rules' settings here
"vue/html-no-self-closing": "error",
"vue/require-v-for-key": "error"
}
}
What did you do? Please include the actual source code causing the issue.
- productos.vue: eslint does not work at all for
<template>
section, but does for<script>
. - atributos.vue: eslint works perfectly.
What did you expect to happen?
I am using the VS Code ESLint extension and I expect to see Vue template errors while typing.
What actually happened? Please include the actual, raw output from ESLint.
Some files display such errors, others don't even though ESLint does show errors for the <script>
section.
Relevant: vuejs/vetur#235.
ErickPetru