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 50a533d commit f1b3441Copy full SHA for f1b3441
.eslintrc.js .eslintrc.cjs.eslintrc.js renamed to .eslintrc.cjs
@@ -1,11 +1,11 @@
1
// @ts-check
2
/** @type{import('eslint').Linter.LegacyConfig} */
3
-export default {
+module.exports = {
4
root: true,
5
extends: ['eslint:recommended'],
6
rules: {
7
eqeqeq: ['error', 'always']
8
},
9
- parserOptions: { ecmaVersion: 11 },
+ parserOptions: { ecmaVersion: 11, sourceType: 'module' },
10
env: { es6: true, node: true }
11
};
0 commit comments