Skip to content
Draft
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 .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"rules": {
"no-unused-vars": "warn",
"@typescript-eslint/no-unused-vars": "warn"
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-explicit-any": "error"
}
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
[![npm version](https://badge.fury.io/js/az-queue-consumer.svg)](https://badge.fury.io/js/az-queue-consumer)
![NPM License](https://img.shields.io/npm/l/az-queue-consumer)
[![CodeFactor](https://www.codefactor.io/repository/github/aarontravass/az-queue-consumer/badge)](https://www.codefactor.io/repository/github/aarontravass/az-queue-consumer)
![TypeScript types](https://badgen.net/npm/types/az-queue-consumer)
<hr>
</div>

Azure Queue Consumer is a simple consumer that allows you to handle queue messages without having to worry about setting up the azure framework.
Azure Queue Consumer is a simple, typescript first consumer that allows you to handle queue messages without having to worry about setting up the azure framework.

## Installation

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
},
"scripts": {
"build": "parcel build",
"format:check": "prettier --check src/**",
"format:fix": "prettier --write src/**",
"format:check": "prettier --check src/** tests/**",
"format:fix": "prettier --write src/** tests/**",
"lint:check": "eslint src/** --ext=ts",
"lint:fix": "eslint src/** --fix --ext=ts",
"prepare": "husky install",
Expand All @@ -43,6 +43,7 @@
"@azure/storage-queue": "^12.14.0"
},
"devDependencies": {
"@azure/identity": "^4.0.0",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@parcel/packager-ts": "^2.10.0",
Expand Down
Loading