We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9d80c commit c50ef6bCopy full SHA for c50ef6b
1 file changed
packages/eslint-config-react-app/base.js
@@ -35,10 +35,21 @@ module.exports = {
35
plugins: [
36
['flow', { all: true, enums: true }],
37
'jsx',
38
- // proposals shipped in major browsers
+ // ES2022, remove these three when upgrading to Babel 7.14
39
'classProperties',
40
'classPrivateProperties',
41
'classPrivateMethods',
42
+ // proposals shipped in major browsers
43
+ 'classStaticBlock',
44
+ 'privateIn',
45
+ // these ES proposals are provided for backward compatibility
46
+ // they are enabled by default by babel-eslint@10, consider remove them in futural versions:
47
+ 'decorators-legacy',
48
+ 'doExpressions',
49
+ 'exportDefaultFrom',
50
+ 'functionBind',
51
+ 'throwExpressions',
52
+ ['pipelineOperator', { proposal: 'minimal' }],
53
],
54
},
55
0 commit comments