mirror of
https://github.com/blamouche/obsidian-any-ai-code.git
synced 2026-07-22 06:53:38 +00:00
The community bot still flagged two sentence-case violations after 0.1.38. Both sit in the manifest.json description: the plural acronym "CLIs" and the multi-word product name "Claude Code" — neither is in the linter's known-acronym / proper-noun lists, so they get flagged mid-sentence. Reworded the description to "Run AI coding tools like Claude or Codex from a right sidebar terminal panel." in both manifest.json (the field the bot actually scans) and package.json (kept in sync for npm metadata). Also switched the local ESLint config from `recommended` to `recommendedWithLocalesEn` so future runs match the bot's severity, and added explicit ignores for non-source JSON / lockfiles. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
953 B
JSON
38 lines
953 B
JSON
{
|
|
"name": "any-ai-cli",
|
|
"version": "0.1.39",
|
|
"description": "Run AI coding tools like Claude or Codex from a right sidebar terminal panel.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production",
|
|
"lint": "eslint main.ts runtime-utils.ts \"tests/**/*.ts\"",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"claude",
|
|
"cli"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.17.30",
|
|
"@typescript-eslint/parser": "^8.59.0",
|
|
"builtin-modules": "^5.0.0",
|
|
"esbuild": "^0.25.3",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.4",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"dependencies": {
|
|
"@xterm/addon-fit": "^0.11.0",
|
|
"@xterm/xterm": "^6.0.0",
|
|
"node-pty": "^1.1.0"
|
|
}
|
|
}
|