Skip to content

Commit

Permalink
feat(caching): add cache-manager, feat(ads): add module and service
Browse files Browse the repository at this point in the history
  • Loading branch information
havrydotdev committed Nov 8, 2023
1 parent b7754b2 commit c057e28
Show file tree
Hide file tree
Showing 147 changed files with 2,031 additions and 873 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ module.exports = {
tsconfigRootDir: __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
plugins: ['@typescript-eslint/eslint-plugin', 'perfectionist'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:perfectionist/recommended-alphabetical',
],
root: true,
env: {
Expand All @@ -21,6 +22,7 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'perfectionist/sort-interfaces': 'error',
'prettier/prettier': [
'error',
{
Expand Down
3 changes: 1 addition & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all",
"plugins": ["prettier-plugin-organize-imports"]
"trailingComma": "all"
}
Loading

0 comments on commit c057e28

Please sign in to comment.