-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from ubiquity-whilefoo/command-interface
Upgrade sdk and switch to bun
- Loading branch information
Showing
29 changed files
with
264 additions
and
6,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Formatting Check | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
format-check: | ||
name: Check for formatting errors | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Bun | ||
uses: oven-sh/setup-bun@v2 | ||
|
||
- name: Install toolchain | ||
run: bun install --frozen-lockfile | ||
|
||
- name: Eslint | ||
run: bun run eslint --fix-dry-run | ||
|
||
- name: Cspell | ||
run: bun run format:cspell | ||
|
||
- name: Prettier | ||
run: bun run prettier --check . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
import tsEslint from "typescript-eslint"; | ||
import eslint from "@eslint/js"; | ||
import sonarjs from "eslint-plugin-sonarjs"; | ||
import checkFile from "eslint-plugin-check-file"; | ||
|
||
export default tsEslint.config({ | ||
plugins: { | ||
"@typescript-eslint": tsEslint.plugin, | ||
"check-file": checkFile, | ||
}, | ||
ignores: [".github/knip.ts", "src/adapters/supabase/types/database.ts", ".wrangler/**", "dist/**", "coverage/**", "tests/**"], | ||
extends: [eslint.configs.recommended, ...tsEslint.configs.recommended, sonarjs.configs.recommended], | ||
languageOptions: { | ||
parser: tsEslint.parser, | ||
parserOptions: { | ||
projectService: { | ||
defaultProject: "tsconfig.json", | ||
allowDefaultProject: ["*.mjs"], | ||
}, | ||
tsconfigRootDir: import.meta.dirname, | ||
}, | ||
}, | ||
rules: { | ||
"check-file/filename-naming-convention": [ | ||
"error", | ||
{ | ||
"**/*.{js,ts}": "+([-._a-z0-9])", | ||
}, | ||
], | ||
"prefer-arrow-callback": [ | ||
"warn", | ||
{ | ||
allowNamedFunctions: true, | ||
}, | ||
], | ||
"func-style": [ | ||
"warn", | ||
"declaration", | ||
{ | ||
allowArrowFunctions: false, | ||
}, | ||
], | ||
"@typescript-eslint/no-floating-promises": "error", | ||
"@typescript-eslint/no-non-null-assertion": "error", | ||
"constructor-super": "error", | ||
"no-invalid-this": "off", | ||
"@typescript-eslint/no-invalid-this": ["error"], | ||
"no-restricted-syntax": ["error", "ForInStatement"], | ||
"use-isnan": "error", | ||
"no-unneeded-ternary": "error", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
args: "after-used", | ||
ignoreRestSiblings: true, | ||
vars: "all", | ||
varsIgnorePattern: "^_", | ||
argsIgnorePattern: "^_", | ||
}, | ||
], | ||
"@typescript-eslint/await-thenable": "error", | ||
"@typescript-eslint/no-misused-new": "error", | ||
"@typescript-eslint/restrict-plus-operands": "error", | ||
"sonarjs/no-all-duplicated-branches": "error", | ||
"sonarjs/no-collection-size-mischeck": "error", | ||
"sonarjs/no-duplicated-branches": "error", | ||
"sonarjs/no-element-overwrite": "error", | ||
"sonarjs/no-identical-conditions": "error", | ||
"sonarjs/no-identical-expressions": "error", | ||
"sonarjs/new-cap": "off", | ||
"sonarjs/different-types-comparison": "off", | ||
"sonarjs/sonar-prefer-regexp-exec": "off", | ||
"sonarjs/function-return-type": "off", | ||
"sonarjs/no-misleading-array-reverse": "off", | ||
"sonarjs/slow-regex": "off", | ||
"sonarjs/no-nested-template-literals": "off", | ||
"sonarjs/no-duplicate-string": "off", | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
selector: "interface", | ||
format: ["StrictPascalCase"], | ||
custom: { | ||
regex: "^I[A-Z]", | ||
match: false, | ||
}, | ||
}, | ||
{ | ||
selector: "memberLike", | ||
modifiers: ["private"], | ||
format: ["strictCamelCase"], | ||
leadingUnderscore: "require", | ||
}, | ||
{ | ||
selector: "typeLike", | ||
format: ["StrictPascalCase"], | ||
}, | ||
{ | ||
selector: "typeParameter", | ||
format: ["StrictPascalCase"], | ||
prefix: ["T"], | ||
}, | ||
{ | ||
selector: "variable", | ||
format: ["strictCamelCase", "UPPER_CASE"], | ||
leadingUnderscore: "allow", | ||
trailingUnderscore: "allow", | ||
}, | ||
{ | ||
selector: "variable", | ||
format: ["strictCamelCase"], | ||
leadingUnderscore: "allow", | ||
trailingUnderscore: "allow", | ||
}, | ||
{ | ||
selector: "variable", | ||
modifiers: ["destructured"], | ||
format: null, | ||
}, | ||
{ | ||
selector: "variableLike", | ||
format: ["strictCamelCase"], | ||
}, | ||
{ | ||
selector: ["function", "variable"], | ||
format: ["strictCamelCase"], | ||
}, | ||
], | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.