Skip to content
Merged
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
3aaff89
add flat config
witoszekdev Jul 23, 2025
e14877c
fix: apply ESLint auto-fixes for ESLint 9 migration
witoszekdev Jul 29, 2025
7c3d65b
fix: resolve TypeScript errors from ESLint 9 migration
witoszekdev Jul 29, 2025
6b0dea9
fix: re-enable import plugin and configure TypeScript resolver
witoszekdev Jul 29, 2025
947940b
Remove unused eslint config, fix as any
witoszekdev Jul 30, 2025
4f89619
Fix TS error
witoszekdev Jul 31, 2025
09ae109
Merge main branch into ESLint 9 migration
witoszekdev Jul 31, 2025
7a6ab5a
Fix all remaining ESLint errors in ESLint 9 migration
witoszekdev Jul 31, 2025
e700c52
Fix TS error
witoszekdev Jul 31, 2025
9e0e3bf
Fix lockfile
witoszekdev Jul 31, 2025
34ebd9f
Remove unused deps
witoszekdev Jul 31, 2025
64c71fe
Fix prettier
witoszekdev Jul 31, 2025
85a123f
Bump versions
witoszekdev Jul 31, 2025
c5e6146
Fix TS types
witoszekdev Jul 31, 2025
67a94b3
Fix errors with __dangerouslySetInnerHTML
witoszekdev Jul 31, 2025
f63630b
Fix legacy redirects
witoszekdev Aug 1, 2025
41b9f1b
Add changeset
witoszekdev Aug 1, 2025
27c7e19
Merge branch 'main' into update-eslint-flatconfig
witoszekdev Aug 1, 2025
7910fdb
Added better explanations for fixes, reverted some unnecesary fallbacks
witoszekdev Aug 1, 2025
71153d6
Remove add plugin for codegen, add generated files to eslint ignore
witoszekdev Aug 1, 2025
c4488ec
Fix prettier
witoszekdev Aug 1, 2025
d704598
Fix tests failing due to chroma-js incorrect transform by jest
witoszekdev Aug 1, 2025
e64892e
Merge branch 'main' into update-eslint-flatconfig
witoszekdev Aug 5, 2025
c3c58cc
Fix failing test tests after merge
witoszekdev Aug 5, 2025
f73bbca
Add missing rules
witoszekdev Aug 5, 2025
f0ce3ea
Fix local rules
witoszekdev Aug 5, 2025
94448dd
Fix error in playwright
witoszekdev Aug 5, 2025
bc5fd39
CR
witoszekdev Aug 5, 2025
69f4d78
CR
witoszekdev Aug 5, 2025
3a6ba9b
Merge branch 'main' into update-eslint-flatconfig
witoszekdev Aug 5, 2025
001207d
Update MacawUI to 1.3.1 (#5768)
kzuraw Aug 6, 2025
0a5bdf9
Add order details right sidebar with customer details (#5776)
kzuraw Aug 6, 2025
3dd1b9c
refactor: improve UnderlineLink component API and structure (#5780)
kzuraw Aug 6, 2025
6849202
Remove unused deps
witoszekdev Aug 6, 2025
9bb7e58
Merge branch 'main' into update-eslint-flatconfig
witoszekdev Aug 6, 2025
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
5 changes: 5 additions & 0 deletions .changeset/blue-banks-peel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Fixed a bug when user tried to use redirect from legacy routes (e.g. /pages -> /models) subpaths were not preserved. Now when user navigates to a deeply nested path, e.g. `/pages/<id>` they'll be redirected to `/models/<id>`.
5 changes: 5 additions & 0 deletions .changeset/tasty-spiders-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Maintanance: Saleor Dashboard now uses ESLint v9 with flatconfig.
186 changes: 0 additions & 186 deletions .eslintrc.json

This file was deleted.

21 changes: 0 additions & 21 deletions codegen.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable no-undef */
import { CodegenConfig } from "@graphql-codegen/cli";

const config: CodegenConfig = {
Expand All @@ -12,11 +11,6 @@ const config: CodegenConfig = {
generates: {
"./src/graphql/fragmentTypes.generated.ts": {
plugins: [
{
add: {
content: "/* eslint-disable */",
},
},
"fragment-matcher",
],
config: {
Expand All @@ -26,21 +20,11 @@ const config: CodegenConfig = {
},
"./src/graphql/typePolicies.generated.ts": {
plugins: [
{
add: {
content: "/* eslint-disable */",
},
},
"typescript-apollo-client-helpers",
],
},
"./src/graphql/types.generated.ts": {
plugins: [
{
add: {
content: "/* eslint-disable */",
},
},
"typescript",
"typescript-operations",
],
Expand All @@ -60,11 +44,6 @@ const config: CodegenConfig = {
},
"./src/graphql/hooks.generated.ts": {
plugins: [
{
add: {
content: "/* eslint-disable */",
},
},
"typescript-react-apollo",
],
config: {
Expand Down
6 changes: 0 additions & 6 deletions eslint-local-rules.js

This file was deleted.

Loading
Loading