Remix.run Logo
ganessh 5 days ago

Does it use the docs in the repository or only the code?

zh2408 5 days ago | parent [-]

By default we use both based on regex:

DEFAULT_INCLUDE_PATTERNS = { ".py", ".js", ".jsx", ".ts", ".tsx", ".go", ".java", ".pyi", ".pyx", ".c", ".cc", ".cpp", ".h", ".md", ".rst", "Dockerfile", "Makefile", ".yaml", ".yml", } DEFAULT_EXCLUDE_PATTERNS = { "test", "tests/", "docs/", "examples/", "v1/", "dist/", "build/", "experimental/", "deprecated/", "legacy/", ".git/", ".github/", ".next/", ".vscode/", "obj/", "bin/", "node_modules/", ".log" }

m0rde 5 days ago | parent | next [-]

Have you tried giving it tests? Curious if you found they made things worse.

Tokumei-no-hito 5 days ago | parent | prev [-]

why exclude tests and docs by default?