Skip to content
Snippets Groups Projects
Unverified Commit a2ca89bf authored by Alex Yang's avatar Alex Yang Committed by GitHub
Browse files

fix: config (#611)

parent edeea408
No related branches found
No related tags found
No related merge requests found
...@@ -11,5 +11,13 @@ module.exports = { ...@@ -11,5 +11,13 @@ module.exports = {
"max-params": ["error", 4], "max-params": ["error", 4],
"prefer-const": "error", "prefer-const": "error",
}, },
overrides: [
{
files: ["examples/**/*.ts"],
rules: {
"turbo/no-undeclared-env-vars": "off",
},
},
],
ignorePatterns: ["dist/", "lib/"], ignorePatterns: ["dist/", "lib/"],
}; };
...@@ -21,4 +21,4 @@ jobs: ...@@ -21,4 +21,4 @@ jobs:
- name: Publish @llamaindex/core - name: Publish @llamaindex/core
run: npx jsr publish run: npx jsr publish
working-directory: packages/core working-directory: packages/core --allow-slow-types
{
"root": false,
"rules": {
"turbo/no-undeclared-env-vars": [
"error",
{
"allowList": [
"OPENAI_API_KEY",
"npm_config_user_agent",
"http_proxy",
"https_proxy",
"MODEL",
"NEXT_PUBLIC_CHAT_API",
"NEXT_PUBLIC_MODEL"
]
}
]
}
}
\ No newline at end of file
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"incremental": true, "incremental": true,
"outDir": "./lib",
"tsBuildInfoFile": "./lib/.tsbuildinfo" "tsBuildInfoFile": "./lib/.tsbuildinfo"
}, },
"include": [ "include": [
......
...@@ -2,65 +2,6 @@ module.exports = { ...@@ -2,65 +2,6 @@ module.exports = {
extends: ["next", "turbo", "prettier"], extends: ["next", "turbo", "prettier"],
rules: { rules: {
"@next/next/no-html-link-for-pages": "off", "@next/next/no-html-link-for-pages": "off",
"turbo/no-undeclared-env-vars": [
"error",
{
allowList: [
"LLAMA_CLOUD_API_KEY",
"LLAMA_CLOUD_BASE_URL",
"OPENAI_API_KEY",
"REPLICATE_API_TOKEN",
"ANTHROPIC_API_KEY",
"ASSEMBLYAI_API_KEY",
"TOGETHER_API_KEY",
"FIREWORKS_API_KEY",
"GROQ_API_KEY",
"ASTRA_DB_APPLICATION_TOKEN",
"ASTRA_DB_ENDPOINT",
"ASTRA_DB_NAMESPACE",
"AZURE_OPENAI_KEY",
"AZURE_OPENAI_ENDPOINT",
"AZURE_OPENAI_API_VERSION",
"AZURE_OPENAI_DEPLOYMENT",
"OPENAI_API_BASE",
"OPENAI_API_VERSION",
"OPENAI_API_TYPE",
"OPENAI_API_ORGANIZATION",
"PINECONE_API_KEY",
"PINECONE_ENVIRONMENT",
"PINECONE_PROJECT_ID",
"PINECONE_INDEX_NAME",
"PINECONE_CHUNK_SIZE",
"PINECONE_INDEX_NAME",
"PINECONE_NAMESPACE",
"AZURE_OPENAI_API_KEY",
"AZURE_OPENAI_API_INSTANCE_NAME",
"AZURE_OPENAI_API_DEPLOYMENT_NAME",
"MISTRAL_API_KEY",
"DEBUG",
"no_proxy",
"NO_PROXY",
"NOTION_TOKEN",
"MONGODB_URI",
"PG_CONNECTION_STRING",
"https_proxy",
"npm_config_user_agent",
"NEXT_PUBLIC_CHAT_API",
"MODEL",
"NEXT_PUBLIC_MODEL",
],
},
],
}, },
// NOTE I think because we've temporarily removed all of the NextJS stuff // NOTE I think because we've temporarily removed all of the NextJS stuff
// from the turborepo not having next in the devDeps causes an error on only // from the turborepo not having next in the devDeps causes an error on only
...@@ -73,4 +14,9 @@ module.exports = { ...@@ -73,4 +14,9 @@ module.exports = {
presets: [require.resolve("next/babel")], presets: [require.resolve("next/babel")],
}, },
}, },
settings: {
react: {
version: "999.999.999",
},
},
}; };
...@@ -6,7 +6,9 @@ ...@@ -6,7 +6,9 @@
"dependsOn": ["^build"], "dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"] "outputs": ["dist/**", "build/**"]
}, },
"lint": {}, "lint": {
"inputs": ["packages/eslint-config-custom"]
},
"test": { "test": {
"dependsOn": ["^build"] "dependsOn": ["^build"]
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment