comparison benchmark/bun-http-framework-benchmark/dev/nest-node/.eslintrc.js @ 183:a8976a008a9d

[BenchMark] Added bun bench mark to test seoboe vs other popular benchmarks.
author MrJuneJune <me@mrjunejune.com>
date Fri, 23 Jan 2026 21:19:08 -0800
parents
children
comparison
equal deleted inserted replaced
179:8d17f6e6e290 183:a8976a008a9d
1 module.exports = {
2 parser: '@typescript-eslint/parser',
3 parserOptions: {
4 project: 'tsconfig.json',
5 tsconfigRootDir: __dirname,
6 sourceType: 'module',
7 },
8 plugins: ['@typescript-eslint/eslint-plugin'],
9 extends: [
10 'plugin:@typescript-eslint/recommended',
11 'plugin:prettier/recommended',
12 ],
13 root: true,
14 env: {
15 node: true,
16 jest: true,
17 },
18 ignorePatterns: ['.eslintrc.js'],
19 rules: {
20 '@typescript-eslint/interface-name-prefix': 'off',
21 '@typescript-eslint/explicit-function-return-type': 'off',
22 '@typescript-eslint/explicit-module-boundary-types': 'off',
23 '@typescript-eslint/no-explicit-any': 'off',
24 },
25 };