fastify 3.27.2 → 3.27.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fastify.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- const VERSION = '3.27.2'
3
+ const VERSION = '3.27.3'
4
4
 
5
5
  const Avvio = require('avvio')
6
6
  const http = require('http')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastify",
3
- "version": "3.27.2",
3
+ "version": "3.27.3",
4
4
  "description": "Fast and low overhead web framework, for Node.js",
5
5
  "main": "fastify.js",
6
6
  "type": "commonjs",
@@ -36,7 +36,9 @@
36
36
  "@typescript-eslint/explicit-function-return-type": "off",
37
37
  "@typescript-eslint/no-unused-vars": "off",
38
38
  "@typescript-eslint/no-non-null-assertion": "off",
39
- "@typescript-eslint/no-misused-promises": ["error"]
39
+ "@typescript-eslint/no-misused-promises": ["error", {
40
+ "checksVoidReturn": false
41
+ }]
40
42
  },
41
43
  "globals": {
42
44
  "NodeJS": "readonly"