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 1bc781d commit e5cb26fCopy full SHA for e5cb26f
packages/eslint-config-transit/index.js
@@ -3,7 +3,7 @@
3
module.exports = {
4
extends: 'airbnb-base',
5
parserOptions: {
6
- ecmaVersion: 2018,
+ ecmaVersion: 2019,
7
ecmaFeatures: {},
8
sourceType: 'script',
9
},
@@ -33,5 +33,7 @@ module.exports = {
33
'allowAfterSuper': true,
34
}],
35
'class-methods-use-this': 'off',
36
+ // Allowing use strict since airbnb disallows it
37
+ 'strict': ['error', 'global'],
38
39
};
0 commit comments