Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
* (deps) Updated all dependencies
* (dev-deps) Updated all dev dependencies
* (dev-deps) Replaced `cross-var` with `expose-env` in version script
  `cross-var` was dependent on vulnerable version of `babel-traverse` through `babel-preset-es2015`
* (test) Updated tasks to use `task.id` instead of `meta.id` for TaskContext/TestContext
  • Loading branch information
vHeemstra committed Jun 26, 2024
1 parent e9c0fbf commit e01aa4c
Show file tree
Hide file tree
Showing 6 changed files with 5,502 additions and 2,851 deletions.
10 changes: 5 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
"es2021": true,
"es6": true,
"node": true,
"vitest-globals/env": true
"vitest-globals/env": true,
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vitest-globals/recommended",
"prettier"
"prettier",
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
"sourceType": "module",
},
"plugins": ["@typescript-eslint"],
"rules": {
"no-console": 1,
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off"
}
"@typescript-eslint/no-explicit-any": "off",
},
}
Loading

0 comments on commit e01aa4c

Please sign in to comment.