Skip to content

Commit

Permalink
feat: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fjodor-rybakov committed Nov 10, 2024
1 parent 7b663ed commit 853f00e
Show file tree
Hide file tree
Showing 4 changed files with 2,235 additions and 1,530 deletions.
24 changes: 0 additions & 24 deletions .eslintrc.js

This file was deleted.

24 changes: 24 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const eslint = require('@eslint/js');
const tseslint = require('typescript-eslint');
const eslintConfigPrettier = require('eslint-config-prettier');

module.exports = tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
},
extends: [eslintConfigPrettier],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
},
{ ignores: ['dist', 'node_modules', 'src/accounting-system-api/generated'] },
);
Loading

0 comments on commit 853f00e

Please sign in to comment.