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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

- name: Run Linter
if: always()
run: npm run lint
run: npm run lint:ci

- uses: dorny/test-reporter@1a288b62f8b75c0f433cbfdbc2e4800fbae50bd7
if: ${{ (success() || failure()) && github.event.pull_request.head.repo.full_name == github.repository }}
Expand Down
10 changes: 0 additions & 10 deletions .prettierrc

This file was deleted.

12 changes: 1 addition & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,5 @@
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[github-actions-workflow]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
"typescript.tsc.autoDetect": "off"
}
60 changes: 60 additions & 0 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"include": ["src/**"],
"ignore": ["out", "test-workspaces", "node_modules", "test-results", ".vscode-test", "tmp", "typings"]
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"ignore": [],
"attributePosition": "auto",
"indentStyle": "space",
"indentWidth": 4,
"lineWidth": 120,
"lineEnding": "lf"
},
"linter": {
"enabled": true,
"rules": {
"style": {
"noNonNullAssertion": "off", // we use these assertions
"noParameterAssign": "off", // useful for default values
"useBlockStatements": {
"level": "error",
"fix": "safe"
},
"useEnumInitializers": "off"
},
"suspicious": {
"noExplicitAny": "off" // used in areas where we work with dynamic JSON data
},
"correctness": {
"noUnusedImports": {
"level": "error",
"fix": "safe"
},
"noSwitchDeclarations": "off"
}
}
},
"organizeImports": {
"enabled": true
},
"javascript": {
"formatter": {
"arrowParentheses": "asNeeded",
"bracketSameLine": true,
"bracketSpacing": true,
"quoteProperties": "asNeeded",
"semicolons": "always",
"trailingCommas": "none",
"quoteStyle": "single"
}
},
"json": {
"formatter": {
"trailingCommas": "none"
}
}
}
46 changes: 0 additions & 46 deletions eslint.config.mjs

This file was deleted.

Loading