Add CLI config, bin scripts, CI workflow and types

This commit is contained in:
2026-01-29 10:07:35 +00:00
parent b4e724993d
commit d16f807e2b

24
.eslintrc.json Normal file
View File

@@ -0,0 +1,24 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/consistent-type-imports": "warn",
"@typescript-eslint/no-unsafe-assignment": "warn",
"@typescript-eslint/no-unsafe-member-access": "warn",
"no-case-declarations": "warn",
"no-empty": "warn"
},
"ignorePatterns": ["node_modules", "dist", "bin/run.js", "bin/dev.js"]
}