643ec121a7
# Introduction
Adding `no-miused-promise` lint rule to the twenty-server
In order to flag such pattern
```ts
// ❌ Flagged — forEach doesn't await the callback
items.forEach(async (item) => {
await process(item);
});
```
## What happened
- Refactored the code-interpreter driver to have a async onResult (
which is also expected by e2b )
- Workspace manager still dirty solution including force cast
- Basic fixes
96 lines
3.2 KiB
JSON
96 lines
3.2 KiB
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": ["typescript", "import", "unicorn"],
|
|
"jsPlugins": ["../twenty-oxlint-rules/dist/oxlint-plugin.mjs"],
|
|
"options": {
|
|
"typeAware": true
|
|
},
|
|
"categories": {
|
|
"correctness": "off"
|
|
},
|
|
"ignorePatterns": [
|
|
"node_modules",
|
|
"dist",
|
|
".local-storage",
|
|
"src/engine/workspace-manager/dev-seeder/data/constants/**",
|
|
"src/engine/workspace-manager/dev-seeder/data/seeds/**",
|
|
"src/utils/email-providers.ts",
|
|
"src/engine/core-modules/i18n/locales/generated/**",
|
|
"src/engine/core-modules/logic-function/logic-function-resource/constants/seed-project/src/index.ts",
|
|
"src/engine/metadata-modules/front-component/constants/seed-project/**",
|
|
"src/engine/core-modules/upgrade/constants/twenty-current-version.constant.ts",
|
|
"src/engine/core-modules/upgrade/constants/twenty-previous-versions.constant.ts",
|
|
"src/engine/core-modules/upgrade/constants/twenty-next-versions.constant.ts"
|
|
],
|
|
"rules": {
|
|
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
|
|
"no-console": ["warn", { "allow": ["group", "groupCollapsed", "groupEnd"] }],
|
|
"no-control-regex": "off",
|
|
"no-debugger": "error",
|
|
"no-duplicate-imports": "error",
|
|
"no-undef": "off",
|
|
"no-unused-vars": "off",
|
|
"no-redeclare": "off",
|
|
"no-restricted-imports": ["error", {
|
|
"patterns": [
|
|
{
|
|
"group": ["**../"],
|
|
"message": "Relative imports are not allowed."
|
|
},
|
|
{
|
|
"group": ["lodash"],
|
|
"message": "Please use the standalone lodash package (for instance: `import groupBy from 'lodash.groupby'` instead of `import { groupBy } from 'lodash'`)"
|
|
}
|
|
]
|
|
}],
|
|
|
|
"import/no-duplicates": "error",
|
|
|
|
"typescript/no-redeclare": "error",
|
|
"typescript/ban-ts-comment": "error",
|
|
"typescript/consistent-type-imports": "off",
|
|
"typescript/explicit-function-return-type": "off",
|
|
"typescript/explicit-module-boundary-types": "off",
|
|
"typescript/no-empty-object-type": ["error", {
|
|
"allowInterfaces": "with-single-extends"
|
|
}],
|
|
"typescript/no-empty-function": "off",
|
|
"typescript/no-explicit-any": "warn",
|
|
"typescript/no-floating-promises": "error",
|
|
"typescript/no-misused-promises": "error",
|
|
"typescript/no-unused-vars": ["warn", {
|
|
"vars": "all",
|
|
"varsIgnorePattern": "^_",
|
|
"args": "after-used",
|
|
"argsIgnorePattern": "^_"
|
|
}],
|
|
|
|
"twenty/inject-workspace-repository": "warn",
|
|
"twenty/rest-api-methods-should-be-guarded": "error",
|
|
"twenty/graphql-resolvers-should-be-guarded": "error",
|
|
"twenty/upgrade-command-filename": "error",
|
|
"twenty/enforce-module-boundaries": ["error", {
|
|
"depConstraints": [
|
|
{
|
|
"sourceTag": "scope:backend",
|
|
"onlyDependOnLibsWithTags": ["scope:shared", "scope:backend"]
|
|
}
|
|
]
|
|
}]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.spec.ts", "**/*.integration-spec.ts", "**/__tests__/**", "**/test/**"],
|
|
"rules": {
|
|
"typescript/no-explicit-any": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": ["**/constants/*.ts", "**/*.constants.ts"],
|
|
"rules": {
|
|
"twenty/max-consts-per-file": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|