Skip to content

Commit

Permalink
refactor(eslint): sort alphabetically (#13)
Browse files Browse the repository at this point in the history
Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl authored Mar 19, 2024
1 parent 5b7d7e8 commit 878a214
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 globals from 'globals';
import { resolve } from 'node:path';

import { defineFlatConfig } from 'eslint-define-config';
import { FlatCompat } from '@eslint/eslintrc';
import { resolve } from 'node:path';

import globals from 'globals';
import typescriptParser from '@typescript-eslint/parser';
import unicorn from 'eslint-plugin-unicorn';

Expand All @@ -21,13 +21,13 @@ export default defineFlatConfig([
unicorn.configs['flat/recommended'],
{
languageOptions: {
globals: {
...globals.node,
},
parser: typescriptParser,
parserOptions: {
project: 'tsconfig.json',
},
globals: {
...globals.node,
},
},
settings: {
'import/resolver': {
Expand Down

0 comments on commit 878a214

Please sign in to comment.