feat(history): add energy price history feature

This commit is contained in:
2026-08-02 11:29:58 +02:00
parent 1511de31a8
commit f70f3ab054
20 changed files with 262 additions and 52 deletions
+23 -5
View File
@@ -1,5 +1,8 @@
import stylistic from '@stylistic/eslint-plugin';
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript';
import {
defineConfigWithVueTs,
vueTsConfigs,
} from '@vue/eslint-config-typescript';
import prettier from 'eslint-config-prettier/flat';
import importPlugin from 'eslint-plugin-import';
import vue from 'eslint-plugin-vue';
@@ -48,9 +51,16 @@ export default defineConfigWithVueTs(
},
],
'import/order': [
'error',
'off',
{
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
groups: [
'builtin',
'external',
'internal',
'parent',
'sibling',
'index',
],
alphabetize: {
order: 'asc',
caseInsensitive: true,
@@ -68,7 +78,11 @@ export default defineConfigWithVueTs(
'@stylistic': stylistic,
},
rules: {
'@stylistic/brace-style': ['error', '1tbs', { allowSingleLine: false }],
'@stylistic/brace-style': [
'error',
'1tbs',
{ allowSingleLine: false },
],
'@stylistic/padding-line-between-statements': [
'error',
...paddingAroundControl,
@@ -96,7 +110,11 @@ export default defineConfigWithVueTs(
},
rules: {
curly: ['error', 'all'],
'@stylistic/brace-style': ['error', '1tbs', { allowSingleLine: false }],
'@stylistic/brace-style': [
'error',
'1tbs',
{ allowSingleLine: false },
],
},
},
);