Merge branch 'main' into linux-install

This commit is contained in:
Hydra 2024-05-13 10:49:11 +01:00 committed by GitHub
commit d99bb7e46b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 6 deletions

View File

@ -6,7 +6,7 @@ module.exports = {
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended", "plugin:jsx-a11y/recommended",
"@electron-toolkit/eslint-config-ts/recommended", "@electron-toolkit/eslint-config-ts/recommended",
"prettier", "plugin:prettier/recommended",
], ],
rules: { rules: {
"@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-function-return-type": "off",

View File

@ -8,7 +8,7 @@ jobs:
build: build:
strategy: strategy:
matrix: matrix:
os: [windows-latest, ubuntu-latest] os: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}

View File

@ -21,9 +21,6 @@ jobs:
- name: Validate current commit (last commit) with commitlint - name: Validate current commit (last commit) with commitlint
run: npx commitlint --last --verbose run: npx commitlint --last --verbose
- name: Check formatting
run: yarn format:check
- name: Typecheck - name: Typecheck
run: yarn typecheck run: yarn typecheck

View File

@ -12,7 +12,6 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix", "lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false", "typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false", "typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",