Files
qoder-cli-vscode/.eslintrc.json
yuantao e9687fec95 chore: add project configuration files
- Add package.json with extension metadata and dependencies
- Add tsconfig.json for TypeScript compilation
- Add .eslintrc.json for code linting
- Add .vscodeignore for packaging exclusions

🤖 Generated with [Qoder](https://qoder.com)
2026-03-27 15:35:36 +08:00

31 lines
555 B
JSON

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "import",
"format": ["camelCase", "PascalCase"]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}