diff --git a/create-app.ts b/create-app.ts index 35ecafe9d4736fc5a8788658752a200353a56d25..d44fb6e42484ed7b866aecb40baf8235ac4ca5e5 100644 --- a/create-app.ts +++ b/create-app.ts @@ -29,7 +29,6 @@ export async function createApp({ ui, appPath, packageManager, - eslint, frontend, openAiKey, llamaCloudKey, @@ -78,7 +77,6 @@ export async function createApp({ ui, packageManager, isOnline, - eslint, openAiKey, llamaCloudKey, model, diff --git a/e2e/utils.ts b/e2e/utils.ts index e4f18497037af3700938708752514e66b69b293a..711f075ff8028c82c27d1bfdc7b3f73c668ae9f1 100644 --- a/e2e/utils.ts +++ b/e2e/utils.ts @@ -103,7 +103,6 @@ export async function runCreateLlama( "--open-ai-key", process.env.OPENAI_API_KEY, appType, - "--eslint", "--use-pnpm", "--port", port, diff --git a/helpers/types.ts b/helpers/types.ts index c524825dbcffc8fa1b0d78629fffca215efdd777..d94993bdb0dbce677a7d678881e4d987151a7094 100644 --- a/helpers/types.ts +++ b/helpers/types.ts @@ -44,7 +44,6 @@ export interface InstallTemplateArgs { framework: TemplateFramework; ui: TemplateUI; dataSources: TemplateDataSource[]; - eslint: boolean; customApiPath?: string; openAiKey?: string; llamaCloudKey?: string; diff --git a/helpers/typescript.ts b/helpers/typescript.ts index f81aaed5a2c4d05b55316b297cca73eb1da54fa2..0ffea767f495c84062b0d47ff010155470f9c8e0 100644 --- a/helpers/typescript.ts +++ b/helpers/typescript.ts @@ -57,7 +57,6 @@ export const installTSTemplate = async ({ template, framework, ui, - eslint, customApiPath, vectorDb, postInstallAction, @@ -75,7 +74,6 @@ export const installTSTemplate = async ({ console.log("\nInitializing project with template:", template, "\n"); const templatePath = path.join(templatesDir, "types", template, framework); const copySource = ["**"]; - if (!eslint) copySource.push("!eslintrc.json"); await copy(copySource, root, { parents: true, @@ -287,14 +285,6 @@ export const installTSTemplate = async ({ }; } - if (!eslint) { - // Remove packages starting with "eslint" from devDependencies - packageJson.devDependencies = Object.fromEntries( - Object.entries(packageJson.devDependencies).filter( - ([key]) => !key.startsWith("eslint"), - ), - ); - } await fs.writeFile( packageJsonFile, JSON.stringify(packageJson, null, 2) + os.EOL, diff --git a/index.ts b/index.ts index b6c11c71910952d5df9e4e8eebbb42570a0328ce..e095a85de41cb1a3ee4c39db385bc291328c01d7 100644 --- a/index.ts +++ b/index.ts @@ -32,13 +32,6 @@ const program = new Commander.Command(packageJson.name) .action((name) => { projectPath = name; }) - .option( - "--eslint", - ` - - Initialize with eslint config. -`, - ) .option( "--use-npm", ` @@ -189,9 +182,6 @@ const program = new Commander.Command(packageJson.name) if (process.argv.includes("--no-frontend")) { program.frontend = false; } -if (process.argv.includes("--no-eslint")) { - program.eslint = false; -} if (process.argv.includes("--tools")) { if (program.tools === "none") { program.tools = []; @@ -296,7 +286,6 @@ async function run(): Promise<void> { ui: program.ui, appPath: resolvedProjectPath, packageManager, - eslint: program.eslint, frontend: program.frontend, openAiKey: program.openAiKey, llamaCloudKey: program.llamaCloudKey, diff --git a/questions.ts b/questions.ts index 9667fa2e903aba893653eb97d55f8bf6c632007c..a682b712542f420f271255077718b472f947b69c 100644 --- a/questions.ts +++ b/questions.ts @@ -71,7 +71,6 @@ const defaults: QuestionArgs = { template: "streaming", framework: "nextjs", ui: "html", - eslint: true, frontend: false, openAiKey: "", llamaCloudKey: "", @@ -784,24 +783,5 @@ export const askQuestions = async ( } } - if (program.framework !== "fastapi" && program.eslint === undefined) { - if (ciInfo.isCI) { - program.eslint = getPrefOrDefault("eslint"); - } else { - const styledEslint = blue("ESLint"); - const { eslint } = await prompts({ - onState: onPromptState, - type: "toggle", - name: "eslint", - message: `Would you like to use ${styledEslint}?`, - initial: getPrefOrDefault("eslint"), - active: "Yes", - inactive: "No", - }); - program.eslint = Boolean(eslint); - preferences.eslint = Boolean(eslint); - } - } - await askPostInstallAction(); }; diff --git a/templates/types/streaming/express/eslintrc.json b/templates/types/streaming/express/eslintrc.json index cf20cdc7a788ed949375c3e013b27e692d6df234..ccffde6189bb7714acf3e481877ecd01499a454e 100644 --- a/templates/types/streaming/express/eslintrc.json +++ b/templates/types/streaming/express/eslintrc.json @@ -1,3 +1,7 @@ { - "extends": "eslint:recommended" + "extends": ["eslint:recommended", "prettier"], + "rules": { + "max-params": ["error", 4], + "prefer-const": "error" + } } diff --git a/templates/types/streaming/express/package.json b/templates/types/streaming/express/package.json index 697370de62d73a165ce26a8c370b732b0a1a144e..12530b244d5b6cea6680345bf33266a71ed67877 100644 --- a/templates/types/streaming/express/package.json +++ b/templates/types/streaming/express/package.json @@ -1,12 +1,13 @@ { "name": "llama-index-express-streaming", "version": "1.0.0", - "main": "dist/index.js", - "type": "module", + "main": "dist/index.mjs", "scripts": { + "format": "prettier --ignore-unknown --cache --check .", + "format:write": "prettier --ignore-unknown --write .", "build": "tsup index.ts --format esm --dts", - "start": "node dist/index.js", - "dev": "concurrently \"tsup index.ts --format esm --dts --watch\" \"nodemon -q dist/index.js\"" + "start": "node dist/index.mjs", + "dev": "concurrently \"tsup index.ts --format esm --dts --watch\" \"nodemon -q dist/index.mjs\"" }, "dependencies": { "ai": "^2.2.25", @@ -23,6 +24,9 @@ "eslint": "^8.54.0", "nodemon": "^3.0.1", "tsup": "^8.0.1", - "typescript": "^5.3.2" + "typescript": "^5.3.2", + "prettier": "^3.2.5", + "prettier-plugin-organize-imports": "^3.2.4", + "eslint-config-prettier": "^8.10.0" } } diff --git a/templates/types/streaming/express/prettier.config.js b/templates/types/streaming/express/prettier.config.js new file mode 100644 index 0000000000000000000000000000000000000000..1fe03c66698992f11be3c9c3b63eff6f27ba52ad --- /dev/null +++ b/templates/types/streaming/express/prettier.config.js @@ -0,0 +1,3 @@ +module.exports = { + plugins: ["prettier-plugin-organize-imports"], +}; diff --git a/templates/types/streaming/nextjs/eslintrc.json b/templates/types/streaming/nextjs/eslintrc.json index bffb357a7122523ec94045523758c4b825b448ef..e96fdb8231f85592554adb918426c1ccc29b0304 100644 --- a/templates/types/streaming/nextjs/eslintrc.json +++ b/templates/types/streaming/nextjs/eslintrc.json @@ -1,3 +1,7 @@ { - "extends": "next/core-web-vitals" + "extends": ["next/core-web-vitals", "prettier"], + "rules": { + "max-params": ["error", 4], + "prefer-const": "error" + } } diff --git a/templates/types/streaming/nextjs/package.json b/templates/types/streaming/nextjs/package.json index a5872f79421a243e24d12dfe48c5324fc91aa03e..0f97c3e8922d513f346912e8d5a45f2576e38ede 100644 --- a/templates/types/streaming/nextjs/package.json +++ b/templates/types/streaming/nextjs/package.json @@ -2,6 +2,8 @@ "name": "llama-index-nextjs-streaming", "version": "1.0.0", "scripts": { + "format": "prettier --ignore-unknown --cache --check .", + "format:write": "prettier --ignore-unknown --write .", "dev": "next dev", "build": "next build", "start": "next start", @@ -38,6 +40,9 @@ "tailwindcss": "^3.3.6", "typescript": "^5.3.2", "@types/react-syntax-highlighter": "^15.5.11", - "cross-env": "^7.0.3" + "cross-env": "^7.0.3", + "prettier": "^3.2.5", + "prettier-plugin-organize-imports": "^3.2.4", + "eslint-config-prettier": "^8.10.0" } } diff --git a/templates/types/streaming/nextjs/prettier.config.js b/templates/types/streaming/nextjs/prettier.config.js new file mode 100644 index 0000000000000000000000000000000000000000..1fe03c66698992f11be3c9c3b63eff6f27ba52ad --- /dev/null +++ b/templates/types/streaming/nextjs/prettier.config.js @@ -0,0 +1,3 @@ +module.exports = { + plugins: ["prettier-plugin-organize-imports"], +};