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 d52b89b commit 92673deCopy full SHA for 92673de
1 file changed
products/userale/eslint.config.js
@@ -1,8 +1,8 @@
1
-import js from '@eslint/js';
2
-import tseslint from 'typescript-eslint';
3
-import pluginJest from 'eslint-plugin-jest';
+const js = require('@eslint/js');
+const tseslint = require('typescript-eslint');
+const pluginJest = require('eslint-plugin-jest');
4
5
-export default [
+module.exports = [
6
js.configs.recommended,
7
...tseslint.configs.recommended,
8
{
@@ -44,7 +44,6 @@ export default [
44
},
45
46
rules: {
47
- // Optional Jest-specific rules
48
49
50
];
0 commit comments