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 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/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) 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/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 */ 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/.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, }, 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",