Skip to content

Commit

Permalink
added feature
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdip-b committed Mar 3, 2024
1 parent 6134bb2 commit ab399e5
Show file tree
Hide file tree
Showing 48 changed files with 8,395 additions and 5,719 deletions.
11 changes: 6 additions & 5 deletions apps/api/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,24 @@ module.exports = {
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
sourceType: 'module'
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:prettier/recommended'
],
root: true,
env: {
node: true,
jest: true,
jest: true
},
ignorePatterns: ['.eslintrc.js'],
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',
},
};
'@typescript-eslint/no-unused-vars': ['warn']
}
}
Loading

0 comments on commit ab399e5

Please sign in to comment.