Skip to content

Commit e6c95fa

Browse files
committedFeb 27, 2020
Make eslint plugins an array
Reveived warnings about the plugins property in eslint config not containing an array. This change creates an array in the config.
1 parent 7d1236d commit e6c95fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎.eslintrc.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ globals:
88
SharedArrayBuffer: readonly
99
parserOptions:
1010
ecmaVersion: 2018
11-
plugins: jest
11+
plugins:
12+
- jest
1213
rules: {}

0 commit comments

Comments
 (0)
Please sign in to comment.