Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ coverage
*.hbs.ts
docs/generated
file-output
.vscode
.vscode
src/di/default/temp
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ With Zibri you can rely on a strong foundation of battle tested libraries that h
- typeorm for handling everything database related
- nodemailer for sending emails
- handlebars for templating
- multer for file uploads
- busboy for file uploads (the foundation of multer)

### 🪖 Making "shooting your foot" as hard as possible
All the public facing classes, interfaces and functions are as strictly typed as possible. Zibri even includes a custom parser for handlebar files, that automtically infer the type of the data that is needed to render the template.
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { configs } from 'eslint-config-service-soft';
/** @type {import('eslint').Linter.Config} */
export default [
...configs,
{ ignores: ['tsconfig.json', 'tsup.config.ts', 'sandbox', 'docs'] },
{ ignores: ['tsconfig.json', 'tsup.config.ts', 'sandbox', 'docs', 'src/di/default/temp'] },
{
files: ['**/__testing__/**/*.ts'],
rules: {
Expand Down
Loading