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
119 lines (102 loc) · 3.28 KB
/
Copy patheslint.config.mjs
File metadata and controls
119 lines (102 loc) · 3.28 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import importPlugin from 'eslint-plugin-import';
import jsdoc from "eslint-plugin-jsdoc";
import prettier from "eslint-plugin-prettier";
import globals from "globals";
import tsParser from "@typescript-eslint/parser";
import tseslint from 'typescript-eslint';
import stylistic from '@stylistic/eslint-plugin'
import oxlint from 'eslint-plugin-oxlint';
const ignores = [
".git/",
"**/*.{d.ts,test.ts,js,cjs,mjs,jsx}",
"**/cdk.out/",
"**/dist/",
"node_modules/",
"**/node_modules/",
"**/bp_modules/",
"**/.botpress/",
"**/gen/",
"**/.turbo/",
"**/.genenv/",
"**/.ignore.me.*",
"**/*.md.ts",
"packages/llmz/examples/"
];
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,
'@stylistic': stylistic,
"@typescript-eslint": tseslint.plugin,
prettier,
import: importPlugin
},
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
parser: tsParser,
ecmaVersion: 5,
sourceType: "commonjs",
parserOptions: {
project: ["./tsconfig.json"],
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
...prettier.configs.recommended.rules,
complexity: ["off"],
"prefer-const": "warn",
"@stylistic/member-delimiter-style": ["error", {
multiline: {
delimiter: "none",
requireLast: true,
},
singleline: {
delimiter: "semi",
requireLast: false,
},
}],
"@stylistic/quotes": ["error", "single", {
avoidEscape: true,
}],
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-misused-promises": "error",
"@stylistic/semi": ["error", "never"],
"@stylistic/type-annotation-spacing": "error",
"@stylistic/brace-style": "off",
"@stylistic/eol-last": "error",
"@typescript-eslint/no-shadow": "off",
"import/order": ["warn", {
groups: [["builtin", "external"], "parent", "index", "sibling"],
// TODO: Eventually enable this in the future for consistency
// 'newlines-between': 'always',
alphabetize: {
order: "asc",
caseInsensitive: true,
},
pathGroupsExcludedImportTypes: ["builtin"],
}],
"jsdoc/check-alignment": "error",
"@stylistic/linebreak-style": ["error", "unix"],
"@stylistic/no-trailing-spaces": "error",
"object-shorthand": "error",
"@typescript-eslint/naming-convention": ["warn", {
selector: "memberLike",
modifiers: ["private"],
format: ["camelCase"],
leadingUnderscore: "require",
}],
"@typescript-eslint/explicit-member-accessibility": "warn",
// Disable every rule already covered by oxlint:
...oxlint.buildFromOxlintConfigFile('./.oxlintrc.json')
.map(config => config.rules)
.reduce((acc, rules) => ({ ...acc, ...rules }), {}),
},
}];