mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-12 07:45:14 -05:00
Restructuring the Repo to make it clear the difference between classic autogpt and the autogpt platform: * Move the "classic" projects `autogpt`, `forge`, `frontend`, and `benchmark` into a `classic` folder * Also rename `autogpt` to `original_autogpt` for absolute clarity * Rename `rnd/` to `autogpt_platform/` * `rnd/autogpt_builder` -> `autogpt_platform/frontend` * `rnd/autogpt_server` -> `autogpt_platform/backend` * Adjust any paths accordingly
31 lines
871 B
JavaScript
31 lines
871 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
const config = {
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
plugins: ["@typescript-eslint"],
|
|
extends: [
|
|
"next/core-web-vitals",
|
|
"plugin:@typescript-eslint/recommended-type-checked",
|
|
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
],
|
|
rules: {
|
|
// These opinionated rules are enabled in stylistic-type-checked above.
|
|
// Feel free to reconfigure them to your own preference.
|
|
"@typescript-eslint/array-type": "off",
|
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
"warn",
|
|
{
|
|
prefer: "type-imports",
|
|
fixStyle: "inline-type-imports",
|
|
},
|
|
],
|
|
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|