@@ -1,4 +1,16 @@
module.exports = {
"parser": "babel-eslint",
- "extends": 'umi'
+ "extends": 'umi',
+ "parserOptions": {
+ "ecmaVersion": 2019,
+ "sourceType": "module",
+ "impliedStrict": true,
+ "ecmaFeatures": {
+ "jsx": true,
+ "globalReturn": false,
+ "experimentalObjectRestSpread": true,
+ "legacyDecorators": true
+ }
+ },
};