Skip to content

Commit

Permalink
chore(eslint):fixed import conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
urizennnn committed Feb 26, 2025
1 parent 6102111 commit 24c4feb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import eslint from '@eslint/js';
import tseslint from '@typescript-eslint/eslint-plugin';
import tsParser from '@typescript-eslint/parser';
import importPlugin from 'eslint-plugin-import';
const eslint = require('@eslint/js');
const tseslint = require('@typescript-eslint/eslint-plugin');
const tsParser = require('@typescript-eslint/parser');
const importPlugin = require('eslint-plugin-import');

export default [
module.exports = [
eslint.configs.recommended,
{
files: ['**/*.{ts,tsx}'],
Expand Down

0 comments on commit 24c4feb

Please sign in to comment.