Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .claude/settings.local.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"mcp__sequential__sequentialthinking",
"Read(/mnt/d/git-org/tacit-code/claude-code-project-index/**)",
"Read(/mnt/d/git-org/tacit-code/claude-code-project-index/**)",
"Read(/mnt/d/git-org/tacit-code/claude-code-project-index/scripts/**)"
"Read(/mnt/d/git-org/tacit-code/claude-code-project-index/scripts/**)",
"Bash(npm run build:*)"
],
"deny": [],
"ask": [],
Expand Down
82 changes: 41 additions & 41 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es2022": true,
"jest": true
},
"ignorePatterns": [
"dist/**",
"node_modules/**",
"coverage/**",
"*.js",
"*.d.ts"
],
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": ["error", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-console": ["warn", {
"allow": ["warn", "error", "log"]
}],
"prefer-const": "error",
"no-var": "error"
}
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es2022": true,
"jest": true
},
"ignorePatterns": [
"dist/**",
"node_modules/**",
"coverage/**",
"*.js",
"*.d.ts"
],
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": ["error", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-console": ["warn", {
"allow": ["warn", "error", "log"]
}],
"prefer-const": "error",
"no-var": "error"
}
}
56 changes: 28 additions & 28 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Run tests
run: npm test
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test
86 changes: 43 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
# Node modules
node_modules/

# Build output
dist/
build/

# Cache directories
.indexer-cache/

# Generated output files (new organized structure)
.indexer-output/

# Legacy output files (in case they still exist)
PROJECT_INDEX.json
CODE_INDEX.md
dependencies.dot
dependencies.mmd
dependencies.png
project-tree.txt
project-table.txt
service-boxes.txt
*.html

# Test coverage
coverage/

# Environment files
.env
.env.local

# IDE files
.vscode/
.idea/

# OS files
.DS_Store
Thumbs.db

# Logs
*.log
npm-debug.log*
yarn-debug.log*
# Node modules
node_modules/
# Build output
dist/
build/
# Cache directories
.indexer-cache/
# Generated output files (new organized structure)
.indexer-output/
# Legacy output files (in case they still exist)
PROJECT_INDEX.json
CODE_INDEX.md
dependencies.dot
dependencies.mmd
dependencies.png
project-tree.txt
project-table.txt
service-boxes.txt
*.html
# Test coverage
coverage/
# Environment files
.env
.env.local
# IDE files
.vscode/
.idea/
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading