Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
WMXPY committed Nov 5, 2024
1 parent 2f6b7e4 commit 8f2023d
Show file tree
Hide file tree
Showing 4 changed files with 420 additions and 294 deletions.
58 changes: 0 additions & 58 deletions .eslintrc.cjs

This file was deleted.

64 changes: 64 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import typescriptParser from "@typescript-eslint/parser";

export default [
{
files: ["**/*.{ts,tsx}"],
languageOptions: {
parser: typescriptParser,
parserOptions: {
sourceType: "module",
},
},
},
{
plugins: {
"@typescript-eslint": typescriptEslint,
},
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
},
],
"comma-dangle": [
"error",
{
arrays: "always-multiline",
objects: "always-multiline",
functions: "always-multiline",
imports: "always-multiline",
exports: "always-multiline",
},
],
"sort-imports": [
"error",
{
ignoreCase: false,
ignoreDeclarationSort: true,
ignoreMemberSort: false,
allowSeparatedGroups: false,
memberSyntaxSortOrder: [
"none",
"all",
"multiple",
"single",
],
},
],
quotes: [
"error",
"double",
{
avoidEscape: true,
},
],
semi: [
"error",
"always",
],
},
},
];
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
"@imbricate/core": "*"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@imbricate/core": "file:../Imbricate/app",
"@imbricate/test-origin-jest": "^2.3.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.8",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
Expand Down
Loading

0 comments on commit 8f2023d

Please sign in to comment.