Skip to content

Commit 9dcc6f3

Browse files
committed
fix linting
1 parent 2be7a83 commit 9dcc6f3

File tree

6 files changed

+44
-26
lines changed

6 files changed

+44
-26
lines changed

.eslintignore

-1
This file was deleted.

.eslintrc

-15
This file was deleted.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Fastify
3+
Copyright (c) 2025 Fastify
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

eslint.config.mjs

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import path from 'node:path'
2+
import { fileURLToPath } from 'node:url'
3+
import js from '@eslint/js'
4+
import { FlatCompat } from '@eslint/eslintrc'
5+
6+
const __filename = fileURLToPath(import.meta.url)
7+
const __dirname = path.dirname(__filename)
8+
const compat = new FlatCompat({
9+
baseDirectory: __dirname,
10+
recommendedConfig: js.configs.recommended,
11+
allConfig: js.configs.all
12+
})
13+
14+
export default [{
15+
ignores: ['node_modules']
16+
}, ...compat.extends('standard'), {
17+
languageOptions: {
18+
globals: {
19+
describe: false,
20+
it: false,
21+
before: false,
22+
after: false,
23+
beforeEach: false,
24+
afterEach: false
25+
}
26+
},
27+
28+
rules: {
29+
'array-bracket-spacing': 0,
30+
'dot-notation': 0
31+
}
32+
}]

package.json

+10-8
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,25 @@
4040
"postversion": "git push && git push --tags"
4141
},
4242
"devDependencies": {
43-
"@fastify/multipart": "^9.0.0",
44-
"@fastify/pre-commit": "^2.1.0",
43+
"@eslint/eslintrc": "3.2.0",
44+
"@eslint/js": "9.18.0",
45+
"@fastify/multipart": "^9.0.2",
46+
"@fastify/pre-commit": "^2.2.0",
4547
"@h4ad/serverless-adapter": "4.4.0",
4648
"@types/aws-lambda": "8.10.147",
4749
"aws-serverless-express": "^3.4.0",
4850
"aws-serverless-fastify": "^3.1.0",
4951
"benchmark": "^2.1.4",
50-
"eslint": "^9.11.0",
52+
"eslint": "^9.18.0",
5153
"eslint-config-standard": "^17.1.0",
52-
"eslint-plugin-import": "^2.29.1",
53-
"eslint-plugin-n": "^17.10.3",
54-
"eslint-plugin-promise": "^7.1.0",
54+
"eslint-plugin-import": "^2.31.0",
55+
"eslint-plugin-n": "^17.15.1",
56+
"eslint-plugin-promise": "^7.2.1",
5557
"eslint-plugin-standard": "^5.0.0",
56-
"fastify": "^5.0.0",
58+
"fastify": "^5.2.1",
5759
"serverless-http": "^3.2.0",
5860
"tap": "^16.3.9",
59-
"tsd": "^0.31.0"
61+
"tsd": "^0.31.2"
6062
},
6163
"publishConfig": {
6264
"access": "public"

performanceTest/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ suite
9393
})
9494
.on('complete', function () {
9595
console.log('Fastest is ' + this.filter('fastest').map('name'))
96-
process.exit(0) // eslint-disable-line no-process-exit
96+
process.exit(0)
9797
})
9898
.run({ async: true })

0 commit comments

Comments
 (0)