-
Notifications
You must be signed in to change notification settings - Fork 22
/
eslint.config.js
63 lines (56 loc) · 1.37 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// @ts-check
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintConfigPrettier from 'eslint-config-prettier';
/**
* @type {import('eslint').Linter.FlatConfig[]}
*/
const customConfig = [
{
rules: {
'no-console': [
'warn',
{
allow: ['info', 'error'],
},
],
quotes: ['error', 'single'],
'arrow-body-style': ['error', 'as-needed'],
'no-underscore-dangle': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: 'ctx|args|req|res|next|^_',
},
],
'@typescript-eslint/no-empty-interface': 'off',
},
},
{
files: ['src/**/*.error.ts', 'src/**/*.handler.ts', 'src/**/*.factory.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
},
},
];
export default tseslint.config(
// Global ignores
// https://eslint.org/docs/latest/use/configure/configuration-files#globally-ignoring-files-with-ignores
{
ignores: ['**/node_modules', 'build', 'docker-volumes', '.husky', 'src/db/**/*.d.ts'],
},
{
languageOptions: {
globals: {
process: 'writable',
console: 'readonly',
},
},
},
eslint.configs.recommended,
...tseslint.configs.strict,
...customConfig,
// ESLint Config last
eslintConfigPrettier,
);