From 1e3ed5ce157cb3b89527c6a69110695fab3359f2 Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Thu, 7 Aug 2025 10:56:05 -0400 Subject: [PATCH] [CHORE] updated alias for odoo testing (work) biome updates might be swtiching to odoolsp if it includes JS soon --- biome.json | 5 +---- lua/plugins/mason.lua | 2 +- zsh/custom/aliases.zsh | 3 +-- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/biome.json b/biome.json index 504e490..7bda099 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json", "formatter": { "enabled": true, "indentStyle": "space", @@ -18,9 +18,6 @@ } } }, - "organizeImports": { - "enabled": false - }, "vcs": { "enabled": true, "clientKind": "git" diff --git a/lua/plugins/mason.lua b/lua/plugins/mason.lua index 3a2d103..569ae39 100644 --- a/lua/plugins/mason.lua +++ b/lua/plugins/mason.lua @@ -7,7 +7,7 @@ return { "ruff", -- js, json, xml, all front end stuff "black", - "biome", + -- "biome", "lemminx", -- lua "stylua", diff --git a/zsh/custom/aliases.zsh b/zsh/custom/aliases.zsh index 96e8e20..a8d8305 100644 --- a/zsh/custom/aliases.zsh +++ b/zsh/custom/aliases.zsh @@ -11,8 +11,7 @@ alias sudo-shell='sudo -E zsh' # [Development] # [Odoo] alias erp-dev='cd ~/workspace/pg/erp_legacy/' -alias erp-dev-server='erp-dev && source venvs/odoo17/bin/activate && cd odoo && python3 odoo-bin -c ../.odoorc --dev all' - +alias erp-dev-test='cd ~/workspace/pg/erp && source venvs/odoo18/bin/activate && cd odoo && python3 odoo-bin -c ../test.conf -i accounting_td_edi,anb_img_zip_importation,auto_raw_procure,client_sku_mapping,contact_anonymization,invoice_line_grouper,pgk_dashboard,pgk_purchase,purchase_order_cost_approval,pricing_breakdown,stock_picking_batch_simple,roq_integration && dropdb --if-exists testdb' # [portal] alias erp-portal-server='erp-dev && source venvs/odoo17/bin/activate && cd odoo && python3 odoo-bin -c ../.portalrc --dev all' alias portal-dev='cd ~/workspace/pg/portal/'