Skip to content

Commit f1b3441

Browse files
committed
Fix ESLint issues
1 parent 50a533d commit f1b3441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// @ts-check
22
/** @type{import('eslint').Linter.LegacyConfig} */
3-
export default {
3+
module.exports = {
44
root: true,
55
extends: ['eslint:recommended'],
66
rules: {
77
eqeqeq: ['error', 'always']
88
},
9-
parserOptions: { ecmaVersion: 11 },
9+
parserOptions: { ecmaVersion: 11, sourceType: 'module' },
1010
env: { es6: true, node: true }
1111
};

0 commit comments

Comments
 (0)