Skip to content

Commit 25b51de

Browse files
committed
chore: fix mjs vs cjs
1 parent e448dfc commit 25b51de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const stylistic = require('@stylistic/eslint-plugin');
1+
import stylistic from '@stylistic/eslint-plugin';
22

33
const stylisticConfig = stylistic.configs.customize({
44
semi: true,
@@ -7,7 +7,7 @@ const stylisticConfig = stylistic.configs.customize({
77
quoteProps: 'as-needed',
88
});
99

10-
module.exports = {
10+
export default {
1111
env: {
1212
node: true,
1313
'jest/globals': true,

0 commit comments

Comments
 (0)