"eslint": "^4.15.0",
"eslint-plugin-vue": "^4.0.0",
node: v8.9.3

i never use JSX. it is just a .vue file.

how to solve this problem? ths
Would you answer issue template?
sorry sir. this problem is just like the #188 ,but i do not how to solve this. There is no problem in old vue project,but in the new vue project.
Would you answer issue template? Especially, I think there is the cause in your .eslintrc.* file. The issue template has the question: "Please show your full configuration:"
thank you so much,sir. i made over my .eslintrc.js file. it works now. thank you so much.
I have solved this by adding .eslintrc.js in the root of the project :
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"never"
]
}
};
Most helpful comment
I have solved this by adding .eslintrc.js in the root of the project :
module.exports = { "env": { "es6": true, "node": true }, "extends": "eslint:recommended", "parserOptions": { "sourceType": "module" }, "rules": { "indent": [ "error", "tab" ], "linebreak-style": [ "error", "unix" ], "quotes": [ "error", "double" ], "semi": [ "error", "never" ] } };