forked from botpress/botpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.mjs
More file actions
102 lines (92 loc) · 2.35 KB
/
Copy patheslint.config.mjs
File metadata and controls
102 lines (92 loc) · 2.35 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import importPlugin from 'eslint-plugin-import'
import jsdoc from 'eslint-plugin-jsdoc'
import globals from 'globals'
import tsParser from '@typescript-eslint/parser'
import tseslint from 'typescript-eslint'
import oxlint from 'eslint-plugin-oxlint'
import path from 'path'
const oxlintFile = path.join(import.meta.dirname, '.oxlintrc.json')
const ignores = [
'.git/',
'**/*.{d.ts,test.ts,js,cjs,mjs,jsx}',
'**/cdk.out/',
'**/dist/',
'node_modules/',
'**/node_modules/',
'**/bp_modules/',
'**/.botpress/',
'**/.adk/',
'**/gen/',
'**/.turbo/',
'**/.genenv/',
'**/.ignore.me.*',
'**/*.md.ts',
]
const oxlintRules = oxlint
.buildFromOxlintConfigFile(oxlintFile)
.map((config) => config.rules)
.reduce((acc, rules) => ({ ...acc, ...rules }), {})
export default [
{
ignores,
// ^ DO NOT REMOVE THIS LINE - this is necessary for the ignores
// pattern to be treated as a "global ignores"
},
{
ignores,
files: ['**/*.{ts,tsx}'],
plugins: {
jsdoc,
'@typescript-eslint': tseslint.plugin,
import: importPlugin,
},
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
parser: tsParser,
ecmaVersion: 5,
sourceType: 'commonjs',
parserOptions: {
project: ['./tsconfig.json'],
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
'@typescript-eslint/no-floating-promises': [
'error',
{
checkThenables: true,
},
],
'@typescript-eslint/no-misused-promises': 'error',
'jsdoc/check-alignment': 'error',
'object-shorthand': 'error',
'@typescript-eslint/naming-convention': [
'warn',
{
selector: 'memberLike',
modifiers: ['private'],
format: ['camelCase'],
leadingUnderscore: 'require',
},
],
'@typescript-eslint/explicit-member-accessibility': 'warn',
'import/no-unresolved': 'off',
'import/order': [
'warn',
{
groups: [['builtin', 'external'], 'parent', 'index', 'sibling'],
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
pathGroupsExcludedImportTypes: ['builtin'],
},
],
// Disable every rule already covered by oxlint:
...oxlintRules,
},
},
]