Skip to content

Commit

Permalink
jshint settings: esnext -> esversion
Browse files Browse the repository at this point in the history
Necessary for nodegit#1867. See https://jshint.com/docs/options/#esnext for reference on the esnext option being deprecated. esversion 9 is the earliest one to support async/await.
  • Loading branch information
samuela committed Oct 17, 2021
1 parent 63c801c commit e099639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"boss": true,
"curly": true,
"eqnull": true,
"esnext": true,
"esversion": 9,
"evil": true,
"futurehostile": true,
"globals": {
Expand Down

0 comments on commit e099639

Please sign in to comment.