Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Dec 1, 2024
1 parent 2e5aa77 commit 21b9ed2
Show file tree
Hide file tree
Showing 3 changed files with 189 additions and 156 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"devDependencies": {
"jest": "^29.0.0",
"stylelint": "^16.0.2",
"stylelint-config-standard-scss": "^13.0.0"
"stylelint-config-standard-scss": "^14.0.0"
},
"files": [
"dist",
Expand Down
76 changes: 57 additions & 19 deletions src/test/cfg/eslint.config.dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"0": ".vue",
"1": ".html"
},
"parser": "typescript-eslint/parser@8.15.0",
"parser": "typescript-eslint/parser@8.16.0",
"project": "tsconfig.json"
},
"sourceType": "module"
Expand All @@ -18,9 +18,9 @@
},
"plugins": [
"@",
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.15.0",
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.16.0",
"unicorn:[email protected]",
"vue:eslint-plugin-vue@9.31.0",
"vue:eslint-plugin-vue@9.32.0",
"import-x",
"simple-import-sort:[email protected]",
"jsdoc",
Expand Down Expand Up @@ -672,7 +672,9 @@
],
"getter-return": [
0,
{}
{
"allowImplicit": false
}
],
"guard-for-in": [
2
Expand All @@ -692,7 +694,12 @@
"id-match": [
2,
"^.+$",
{}
{
"classFields": false,
"ignoreDestructuring": false,
"onlyDeclarations": false,
"properties": false
}
],
"import-x/export": [
2
Expand Down Expand Up @@ -876,7 +883,8 @@
"no-bitwise": [
2,
{
"allow": []
"allow": [],
"int32Hint": false
}
],
"no-caller": [
Expand Down Expand Up @@ -936,7 +944,9 @@
],
"no-duplicate-imports": [
0,
{}
{
"includeExports": false
}
],
"no-else-return": [
0,
Expand All @@ -961,14 +971,18 @@
],
"no-empty-pattern": [
0,
{}
{
"allowObjectPatternsAsParameters": false
}
],
"no-empty-static-block": [
2
],
"no-eval": [
0,
{}
{
"allowIndirect": false
}
],
"no-ex-assign": [
0
Expand Down Expand Up @@ -1022,7 +1036,10 @@
],
"no-inner-declarations": [
0,
"functions"
"functions",
{
"blockScopedFunctions": "allow"
}
],
"no-invalid-regexp": [
2,
Expand Down Expand Up @@ -1151,7 +1168,9 @@
0,
{
"allow": [],
"hoist": "functions"
"builtinGlobals": false,
"hoist": "functions",
"ignoreOnInitialization": false
}
],
"no-shadow-restricted-names": [
Expand All @@ -1171,7 +1190,9 @@
],
"no-undef": [
0,
{}
{
"typeof": false
}
],
"no-undef-init": [
0
Expand All @@ -1186,6 +1207,7 @@
"allowFunctionParams": true,
"allowInArrayDestructuring": true,
"allowInObjectDestructuring": true,
"enforceInClassFields": false,
"enforceInMethodNames": false
}
],
Expand All @@ -1212,11 +1234,15 @@
],
"no-unsafe-negation": [
0,
{}
{
"enforceForOrderingRelations": false
}
],
"no-unsafe-optional-chaining": [
0,
{}
{
"disallowArithmeticOperators": false
}
],
"no-unused-expressions": [
0,
Expand All @@ -1239,6 +1265,7 @@
"no-use-before-define": [
0,
{
"allowNamedExports": false,
"classes": true,
"functions": true,
"variables": true
Expand Down Expand Up @@ -1270,7 +1297,11 @@
],
"no-useless-rename": [
0,
{}
{
"ignoreDestructuring": false,
"ignoreExport": false,
"ignoreImport": false
}
],
"no-var": [
0
Expand All @@ -1294,7 +1325,8 @@
"prefer-const": [
0,
{
"destructuring": "any"
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
],
"prefer-exponentiation-operator": [
Expand All @@ -1305,11 +1337,15 @@
],
"prefer-promise-reject-errors": [
0,
{}
{
"allowEmptyReject": false
}
],
"prefer-regex-literals": [
0,
{}
{
"disallowRedundantWrapping": false
}
],
"prefer-rest-params": [
0
Expand Down Expand Up @@ -1844,7 +1880,9 @@
],
"valid-typeof": [
0,
{}
{
"requireStringLiterals": false
}
],
"vue/array-bracket-newline": [
0
Expand Down
Loading

0 comments on commit 21b9ed2

Please sign in to comment.