I'm trying to use decorators in my JS project, however ESLint is throwing an error stating that the @ symbol is a unexpected character.
My code:
@observable items = [];
My .eslintrc:
{
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": false
},
"ecmaFeatures": {
"modules": true
},
"rules": {
"strict": [
2,
"global"
],
"quotes": [
2,
"single"
],
"indent": [
2,
4
],
"eqeqeq": [
2,
"smart"
],
"semi": [
2,
"always"
],
"max-depth": [
2,
4
],
"max-statements": [
2,
15
],
"complexity": [
2,
5
]
}
}
I'm trying to use decorators in my JS project, however ESLint is throwing an error stating that the @ symbol is a unexpected character.
My code:
@observable items = [];
My .eslintrc:
{
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": false
},
"ecmaFeatures": {
"modules": true
},
"rules": {
"strict": [
2,
"global"
],
"quotes": [
2,
"single"
],
"indent": [
2,
4
],
"eqeqeq": [
2,
"smart"
],
"semi": [
2,
"always"
],
"max-depth": [
2,
4
],
"max-statements": [
2,
15
],
"complexity": [
2,
5
]
}
}
Share
Improve this question
edited Nov 18, 2016 at 13:33
a better oliver
26.8k2 gold badges62 silver badges66 bronze badges
asked Nov 18, 2016 at 13:21
user818700user818700
1
- There are no decorators in ES6. – a better oliver Commented Nov 18, 2016 at 13:36
6 Answers
Reset to default 14You probably want to use babel-eslint which uses Babel to parse things that ESLint hasn't implemented yet (usually experimental features like this). From their README:
At the moment, you'll need it if you use stuff like class properties, decorators, types.
It is used with your current eslint setup, you just have to update some configuration in your .eslintrc
A quick answer:
Install a lib
npm i -D babel-eslint
Add to your .eslintrc
"parser": "babel-eslint"
If you using Visual Code it will not always work. You need to add into User Settings (or Workspace Settings) following parameter:
{
...
"eslint.options": {
"experimentalDecorators": true
}
...
}
Somehow this option wins anything you put into .eslintrc .
If you using @babel/core
, you need to install @babel/eslint-parser
.
Add to your .eslintrc
parser: "@babel/eslint-parser"
Using babel-parser
might have fixed the '@'s but caused a bunch of other warnings and errors. What I did was put all the files that used the decorator into a store folder, create an .eslintignore
file and pointed to that directory.
To fix this you need to choose google as your style guide as follow:
extends: ["google"],