From 4251b335963fc106cc04e9dbbf03c973da1f1328 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Mon, 25 May 2026 03:32:08 +0300 Subject: [PATCH 1/5] =?UTF-8?q?feat:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=20renovate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..46ecf84 --- /dev/null +++ b/renovate.json @@ -0,0 +1,3 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json" +} \ No newline at end of file From fce3044f946ff4a4bca73ba83bd0442625ca4537 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Mon, 25 May 2026 03:35:30 +0300 Subject: [PATCH 2/5] fix: front type check --- frontend/eslint.config.ts | 4 +++- frontend/src/components/ui/DataTable.vue | 15 ++++++++++++--- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/frontend/eslint.config.ts b/frontend/eslint.config.ts index 4b4d3f3..b6deff1 100644 --- a/frontend/eslint.config.ts +++ b/frontend/eslint.config.ts @@ -5,6 +5,8 @@ import pluginOxlint from 'eslint-plugin-oxlint' import skipFormatting from 'eslint-config-prettier/flat' import vueScopedCss from 'eslint-plugin-vue-scoped-css' +type VueTsConfig = Parameters[number] + // To allow more languages other than `ts` in `.vue` files, uncomment the following lines: // import { configureVueProject } from '@vue/eslint-config-typescript' // configureVueProject({ scriptLangs: ['ts', 'tsx'] }) @@ -20,7 +22,7 @@ export default defineConfigWithVueTs( ...pluginVue.configs['flat/essential'], vueTsConfigs.recommended, - ...vueScopedCss.configs.recommended, + ...(vueScopedCss.configs.recommended as VueTsConfig[]), ...pluginOxlint.buildFromOxlintConfigFile('.oxlintrc.json'), diff --git a/frontend/src/components/ui/DataTable.vue b/frontend/src/components/ui/DataTable.vue index a241d63..0bb1a2a 100644 --- a/frontend/src/components/ui/DataTable.vue +++ b/frontend/src/components/ui/DataTable.vue @@ -1,8 +1,17 @@