Skip to content

Commit e5cb26f

Browse files
author
Justin Asfour
committed
Updated eslintrc in order to allow strict mode again
1 parent 1bc781d commit e5cb26f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/eslint-config-transit/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = {
44
extends: 'airbnb-base',
55
parserOptions: {
6-
ecmaVersion: 2018,
6+
ecmaVersion: 2019,
77
ecmaFeatures: {},
88
sourceType: 'script',
99
},
@@ -33,5 +33,7 @@ module.exports = {
3333
'allowAfterSuper': true,
3434
}],
3535
'class-methods-use-this': 'off',
36+
// Allowing use strict since airbnb disallows it
37+
'strict': ['error', 'global'],
3638
},
3739
};

0 commit comments

Comments
 (0)