Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
08239f1
Update NPM dependencies
christianlupus Apr 27, 2026
864ef62
Upgrade eslint to verison 9
christianlupus Apr 27, 2026
2a8ec10
Drop Airbnb eslint config
christianlupus Apr 27, 2026
83a4bc7
Upgrade vue to v3
christianlupus Apr 27, 2026
a4e984a
Upgrade vue-jest to v3
christianlupus Apr 27, 2026
7c21f1b
Formally upgrade vue
christianlupus May 1, 2026
227fdf6
Formally upgrade vite config
christianlupus May 1, 2026
032dd94
Formally install vuejs3-logger instead of vuejs-logger
christianlupus May 1, 2026
1e0eaa5
Start migration of main app to Vue3
christianlupus May 1, 2026
be2969d
Fix some eslint warnings and errors
christianlupus May 1, 2026
be83dcc
Update Pinia version
christianlupus May 1, 2026
fa4b0a1
Redirect app logging into instance
christianlupus May 1, 2026
0faeb58
Update Router and add to main Vue app
christianlupus May 1, 2026
9ed07be
Clean up pinia structure
christianlupus May 1, 2026
81fcb80
Drop old Vue2 stuff
christianlupus May 1, 2026
2b8d4de
Drop invalud Vue import
christianlupus May 1, 2026
ae0ab9e
Fix router usage
christianlupus May 1, 2026
1844ba9
Fix some more Vue stuff
christianlupus May 1, 2026
3d10de7
Add debugging about development mode
christianlupus May 1, 2026
fb09792
Drop test codes
christianlupus May 1, 2026
5bf328b
Update recipe counter
christianlupus May 1, 2026
7850bd7
Use web hash history
christianlupus May 1, 2026
41d8313
Start to establish Modals
christianlupus May 3, 2026
ec369c8
Migrate basic modal dialog implementation
christianlupus May 30, 2026
c510481
WIP work on mirgration
christianlupus May 31, 2026
e11710c
WIP Clean up some more files
christianlupus May 31, 2026
2557471
Merge remote-tracking branch 'origin/master' into maint/upgrade-vue
christianlupus Jul 11, 2026
0efc61e
Fix some issues regarding the recipe filtering
christianlupus Jul 13, 2026
eef643a
Make Prettier happy
christianlupus Jul 13, 2026
e17892d
Migrate eslint config to Vue 3
christianlupus Jul 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NODE_ENV=development
25 changes: 12 additions & 13 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,13 @@ export default [
...fixupConfigRules(
compat.extends(
'eslint:recommended',
'airbnb-base',
'plugin:import/typescript',
'prettier',
),
),

// Native flat Vue 2 preset
...pluginVue.configs['flat/vue2-recommended'],
...pluginVue.configs['flat/recommended'],

// Force Vue SFC parsing for .vue files LAST so it wins
{
Expand Down Expand Up @@ -189,16 +188,16 @@ export default [
props: true,
ignorePropertyModificationsFor: ['state'],
}],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
// 'import/extensions': [
// 'error',
// 'ignorePackages',
// {
// js: 'never',
// jsx: 'never',
// ts: 'never',
// tsx: 'never',
// },
// ],
'no-plusplus': [
'error',
{
Expand Down Expand Up @@ -230,4 +229,4 @@ export default [
'import/prefer-default-export': 'off',
},
},
];
];
Loading
Loading