-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.js
executable file
·45 lines (45 loc) · 1.12 KB
/
.eslintrc.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
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: [
'apps/**',
'packages/**',
'node_modules/**',
'dist/**',
'build.ts',
'devBuild.ts',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
parserOptions: {
project: './tsconfig.json',
ecmaVersion: 'latest',
sourceType: 'module',
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
env: {
es6: true,
},
rules: {
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/ban-ts-comment': [
'off',
{
'ts-ignore': 'allow-with-description',
},
],
'import/no-unresolved': ['error', { ignore: ['cloudflare:workers'] }],
'no-useless-escape': 'off',
'no-useless-catch': 'off',
'@typescript-eslint/no-namespace': 'off',
'no-empty': 'off',
'no-case-declarations': 'off',
},
}