-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathfull.yaml
More file actions
103 lines (91 loc) · 2.04 KB
/
Copy pathfull.yaml
File metadata and controls
103 lines (91 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# enola full configuration with all languages enabled.
#
# This config includes all supported extractors and comprehensive
# ignore patterns for every language. Use this as a starting point
# and remove sections that don't apply to your project.
#
# Supported extractors:
# - go (detection: go.mod)
# - java (detection: pom.xml, build.gradle, or .java sources)
# - kotlin (detection: build.gradle.kts or build.gradle with Kotlin/Android)
# - typescript (detection: tsconfig.json or package.json with TypeScript)
# - swift (detection: Package.swift, .xcodeproj, or .xcworkspace)
# - ruby (detection: Gemfile)
# - cpp (detection: .cpp/.hpp/... or CMakeLists.txt/Makefile + header)
repo: "."
ignore:
# Dependencies and tooling
- "vendor/**"
- "node_modules/**"
- ".git/**"
- ".enola/**"
# Go tests
- "**/*_test.go"
# TypeScript tests
- "**/*.test.ts"
- "**/*.test.tsx"
- "**/*.spec.ts"
- "**/*.spec.tsx"
# Kotlin / Android build and cache
- "build/**"
- "**/build/**"
- ".gradle/**"
- "**/.gradle/**"
- "**/generated/**"
- "**/*Test.kt"
- "**/androidTest/**"
# Swift / Xcode build and cache
- "DerivedData/**"
- "**/DerivedData/**"
- "*.xcodeproj/**"
- "*.xcworkspace/**"
- "Pods/**"
- "**/Pods/**"
- ".build/**"
- "**/.build/**"
- "**/*Tests.swift"
- "**/*Test.swift"
# Ruby / Rails
- "**/*_spec.rb"
- "**/*_test.rb"
- "tmp/**"
- "log/**"
- "public/assets/**"
- "public/packs/**"
# Next.js / build and cache
- ".next/**"
- "out/**"
- ".vercel/**"
- ".turbo/**"
# Documentation
- "**/*.md"
- "**/*.mdx"
# Config / data (YAML, JSON)
- "**/*.yml"
- "**/*.yaml"
- "**/*.json"
# CI / ops
- "Jenkinsfile"
- "**/Jenkinsfile"
- "**/Jenkinsfile*"
# Docker and env files
- "Dockerfile"
- "**/Dockerfile*"
- "**/.env*"
extractors:
- cpp
- go
- java
- kotlin
- typescript
- swift
- ruby
explainers:
- cycles
- layers
- crossrepo
renderers:
- llm_context
output:
dir: ".enola"
max_context_tokens: 16000