Skip to content

Commit

Permalink
refactor: Moved to redis-semaphore package for lock support
Browse files Browse the repository at this point in the history
  • Loading branch information
erayhanoglu committed Dec 26, 2024
1 parent 993de61 commit 2ac6531
Show file tree
Hide file tree
Showing 20 changed files with 2,365 additions and 2,083 deletions.
17 changes: 0 additions & 17 deletions .eslintrc

This file was deleted.

23 changes: 23 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import panatesEslint from '@panates/eslint-config-ts';
import globals from 'globals';

/** @type {import('eslint').Linter.Config[]} */
export default [
{
ignores: [
'build/**/*',
'node_modules/**/*',
'packages/**/node_modules/**/*',
'packages/**/build/**/*',
'packages/**/dist/**/*',
],
},
...panatesEslint.configs.node,
{
languageOptions: {
globals: {
...globals.jest,
},
},
},
];
Loading

0 comments on commit 2ac6531

Please sign in to comment.