Skip to content

Commit a1d6a1b

Browse files
committed
chore: remove old ESLint configuration files and add new configuration in .mjs format
1 parent 81fdb22 commit a1d6a1b

File tree

2 files changed

+4
-48
lines changed

2 files changed

+4
-48
lines changed

packages/apps/faucet/server/eslint.config.js

Lines changed: 0 additions & 47 deletions
This file was deleted.

packages/apps/fortune/exchange-oracle/server/eslint.config.js renamed to packages/apps/fortune/exchange-oracle/server/eslint.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
44
import jestPlugin from 'eslint-plugin-jest';
55
import tseslint from 'typescript-eslint';
66

7-
export default tseslint.config(
7+
/** @type {import('eslint').Linter.FlatConfig[]} */
8+
const config = tseslint.config(
89
{
910
ignores: ['dist', '.eslintrc.js'],
1011
},
@@ -48,3 +49,5 @@ export default tseslint.config(
4849
},
4950
},
5051
);
52+
53+
export default config;

0 commit comments

Comments
 (0)