Skip to content

Commit

Permalink
fix mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
BeeeQueue committed Jul 24, 2023
1 parent 24adb4e commit 72e6de9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/config/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export const typescript = {
"@typescript-eslint/consistent-type-exports": "off",
/** Don't warn on implicit function returns */
"@typescript-eslint/explicit-module-boundary-types": "off",
/** Don't allow unions or intersections with types that ruin them (any, unknown, etc.) */
"@typescript-eslint/no-redundant-type-constituents": "error",
/** Allow unions or intersections with types that ruin them (any, unknown, etc.), it be used for enhancing IDE behavior */
"@typescript-eslint/no-redundant-type-constituents": "off",
/** Enforce using shorter Map constructor syntax */
"@typescript-eslint/consistent-generic-constructors": "error",
/** Require explanations for @ts-ignore:s */
Expand Down
2 changes: 1 addition & 1 deletion src/config/vue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const vue = {
"vue/define-props-declaration": "error",
"vue/define-emits-declaration": "error",
/** Require strict types on refs */
"vue/require-typed-ref ": "error",
"vue/require-typed-ref": "error",

/* Style rules */

Expand Down

0 comments on commit 72e6de9

Please sign in to comment.