From 084af3d8927e3a58c552515137a7ee8043afdc01 Mon Sep 17 00:00:00 2001 From: AlisherAmonulloev Date: Fri, 28 Nov 2025 13:41:51 +0200 Subject: [PATCH 1/5] Remove unnecessary node and estree types from React tsconfig.app.json These types are only needed in tsconfig.node.json for build config files. React application source code doesn't require Node.js type definitions. --- React/tsconfig.app.json | 1 - 1 file changed, 1 deletion(-) diff --git a/React/tsconfig.app.json b/React/tsconfig.app.json index fb44eb4..c3e4124 100644 --- a/React/tsconfig.app.json +++ b/React/tsconfig.app.json @@ -5,7 +5,6 @@ "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], - "types": ["node", "estree"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ From bb27ba37edbd52e3130242be893e915d4446d260 Mon Sep 17 00:00:00 2001 From: AlisherAmonulloev Date: Fri, 28 Nov 2025 14:11:06 +0200 Subject: [PATCH 2/5] Fix parsing errors of tsconfig.json --- Angular/.eslintrc.js | 1 + React/.eslintrc.cjs | 1 + Vue/.eslintrc.cjs | 1 + 3 files changed, 3 insertions(+) diff --git a/Angular/.eslintrc.js b/Angular/.eslintrc.js index 72c8bf6..29f382b 100644 --- a/Angular/.eslintrc.js +++ b/Angular/.eslintrc.js @@ -10,6 +10,7 @@ module.exports = { }, parserOptions: { project: './tsconfig.json', + tsconfigRootDir: __dirname, 'createDefaultProgram': true, 'ecmaVersion': 6, }, diff --git a/React/.eslintrc.cjs b/React/.eslintrc.cjs index 24f7e79..0ce3ece 100644 --- a/React/.eslintrc.cjs +++ b/React/.eslintrc.cjs @@ -10,6 +10,7 @@ module.exports = { }, parserOptions: { project: './tsconfig.json', + tsconfigRootDir: __dirname, 'createDefaultProgram': true, ecmaVersion: 2022, sourceType: 'module', diff --git a/Vue/.eslintrc.cjs b/Vue/.eslintrc.cjs index ed8acb8..245e228 100644 --- a/Vue/.eslintrc.cjs +++ b/Vue/.eslintrc.cjs @@ -10,6 +10,7 @@ module.exports = { env: { es6: true }, parserOptions: { project: './tsconfig.json', + tsconfigRootDir: __dirname, 'createDefaultProgram': true, 'ecmaVersion': 2020, }, From ea3762c4f8203ce4e3031d7e61f3a291859a24dc Mon Sep 17 00:00:00 2001 From: AlisherAmonulloev Date: Fri, 28 Nov 2025 13:33:04 +0200 Subject: [PATCH 3/5] Fix localhost pattern in .lycheeignore for proper URL matching --- .lycheeignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.lycheeignore b/.lycheeignore index 083ca46..c282ec3 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -1,5 +1,6 @@ https://www.devexpress.com/support/examples/survey.xml?* https://supportcenter.devexpress.com/ticket/create -http*://localhost* +http://localhost* +https://localhost* https://docs.devexpress.com/* https://js.devexpress.com/*/Documentation/* \ No newline at end of file From 0f1318eea24465bb184b565ec36f936e4b614bdd Mon Sep 17 00:00:00 2001 From: AlisherAmonulloev Date: Fri, 28 Nov 2025 16:49:45 +0200 Subject: [PATCH 4/5] Fix lint issues for Vue --- Vue/.eslintignore | 3 +++ Vue/package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 Vue/.eslintignore diff --git a/Vue/.eslintignore b/Vue/.eslintignore new file mode 100644 index 0000000..6334f6f --- /dev/null +++ b/Vue/.eslintignore @@ -0,0 +1,3 @@ +node_modules/* +dist/* +.eslintrc.cjs diff --git a/Vue/package.json b/Vue/package.json index 948760e..87c7cd9 100644 --- a/Vue/package.json +++ b/Vue/package.json @@ -9,7 +9,7 @@ "test:unit": "vitest --environment jsdom --root src/", "build-only": "vite build", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", - "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .eslintignore" }, "dependencies": { "devextreme": "25.1.3", From 7ef19fdefea7d0018e9281fdbb9bdd50c932272f Mon Sep 17 00:00:00 2001 From: DevExpressExampleBot Date: Sun, 30 Nov 2025 18:18:31 +0400 Subject: [PATCH 5/5] README auto update [skip ci] --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2363c18..d8f674d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/331598295/25.1.3%2B) [![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T966774) [![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183) [![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives)