-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move to vitest and update eslint (#1338)
* move to vitest * update eslint * fix ci
- Loading branch information
Showing
16 changed files
with
1,913 additions
and
3,409 deletions.
There are no files selected for viewing
This file was deleted.
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- run: yarn build | ||
|
||
- name: Test coverage | ||
run: yarn jest test/ --collectCoverage=true | ||
run: yarn test --coverage | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
|
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,103 @@ | ||
import eslint from "@eslint/js"; | ||
import tseslint from "typescript-eslint"; | ||
import tsParser from "@typescript-eslint/parser"; | ||
import prettierConfig from "eslint-plugin-prettier/recommended"; | ||
import globals from "globals"; | ||
import vitest from "eslint-plugin-vitest"; | ||
|
||
delete globals.browser["AudioWorkletGlobalScope "]; | ||
|
||
/** | ||
* @type {import('eslint').Linter.FlatConfig[]} | ||
*/ | ||
export default [ | ||
{ | ||
ignores: [ | ||
".eslintrc.js", | ||
"babel.config.js", | ||
"prettier.config.js", | ||
"vitest.config.ts", | ||
"vitest.setup.ts", | ||
"rollup.config.js", | ||
"build/**", | ||
"coverage/**", | ||
"FixJSDOMEnvironment.ts", | ||
], | ||
}, | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommendedTypeChecked, | ||
{ | ||
languageOptions: { | ||
parserOptions: { | ||
project: true, | ||
tsconfigRootDir: import.meta.dirname, | ||
}, | ||
}, | ||
}, | ||
{ | ||
files: ["**/*.{js,ts}"], | ||
plugins: { | ||
vitest, | ||
}, | ||
languageOptions: { | ||
parser: tsParser, | ||
globals: { | ||
...globals.browser, | ||
}, | ||
}, | ||
settings: { | ||
vitest: { | ||
typecheck: true, | ||
}, | ||
}, | ||
rules: { | ||
...vitest.configs.recommended.rules, | ||
"prettier/prettier": "warn", | ||
"@typescript-eslint/explicit-function-return-type": "off", | ||
"@typescript-eslint/ban-types": "warn", | ||
"@typescript-eslint/no-explicit-any": "warn", | ||
"@typescript-eslint/prefer-for-of": "error", | ||
"@typescript-eslint/no-for-in-array": "error", | ||
"@typescript-eslint/no-require-imports": "error", | ||
"@typescript-eslint/no-parameter-properties": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
vars: "all", | ||
args: "after-used", | ||
ignoreRestSiblings: true, | ||
}, | ||
], | ||
"@typescript-eslint/no-shadow": "error", | ||
"@typescript-eslint/no-unsafe-member-access": "warn", | ||
"@typescript-eslint/no-unsafe-argument": "warn", | ||
"@typescript-eslint/no-unsafe-return": "warn", | ||
"@typescript-eslint/no-unsafe-assignment": "warn", | ||
"@typescript-eslint/no-unsafe-call": "warn", | ||
"@typescript-eslint/no-object-literal-type-assertion": "off", | ||
"@typescript-eslint/explicit-module-boundary-types": "off", | ||
"@typescript-eslint/no-namespace": "error", | ||
"@typescript-eslint/unbound-method": "off", | ||
"@typescript-eslint/no-base-to-string": "off", | ||
"@typescript-eslint/no-unnecessary-type-assertion": "off", | ||
"@typescript-eslint/restrict-template-expressions": "off", | ||
"@typescript-eslint/no-misused-promises": "off", | ||
"linebreak-style": ["error", "unix"], | ||
"no-irregular-whitespace": ["error", { skipComments: true }], | ||
"no-alert": "error", | ||
"prefer-const": "error", | ||
"no-return-assign": "error", | ||
"no-useless-call": "error", | ||
"no-useless-concat": "error", | ||
"prefer-template": "error", | ||
"no-unused-vars": "off", | ||
// "no-undef": "off", // typescript takes care of this for us | ||
"no-unreachable": "off", // typescript takes care of this for us | ||
}, | ||
}, | ||
prettierConfig, | ||
{ | ||
files: ["**/*.mjs"], | ||
...tseslint.configs.disableTypeChecked, | ||
}, | ||
]; |
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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import {defineConfig} from 'vitest/config'; | ||
|
||
export default defineConfig({ | ||
test: { | ||
setupFiles: ['./vitest.setup.ts'], | ||
environment: 'jsdom', | ||
server: { | ||
deps: { | ||
inline: ['vitest-canvas-mock'], | ||
}, | ||
}, | ||
environmentOptions: { | ||
jsdom: { | ||
resources: 'usable', | ||
}, | ||
}, | ||
}, | ||
}); |
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 @@ | ||
import 'vitest-canvas-mock'; |
Oops, something went wrong.