mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Cleanup
This commit is contained in:
parent
8e8bdca0b6
commit
2834bbe7d9
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"parser": "@babel/eslint-parser"
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"plugins": ["@typescript-eslint"],
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended-type-checked",
|
|
||||||
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/no-unsafe-return": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-call": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
||||||
"@typescript-eslint/prefer-optional-chain": "off",
|
|
||||||
"@typescript-eslint/no-base-to-string": "off",
|
|
||||||
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
||||||
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
|
||||||
"@typescript-eslint/consistent-type-definitions": "off",
|
|
||||||
"@typescript-eslint/no-unused-vars": "off",
|
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
"@typescript-eslint/prefer-for-of": "off",
|
|
||||||
"@typescript-eslint/non-nullable-type-assertion-style": "off",
|
|
||||||
"@typescript-eslint/class-literal-property-style": "off",
|
|
||||||
"@typescript-eslint/no-redundant-type-constituents": "off",
|
|
||||||
"@typescript-eslint/prefer-string-starts-ends-with": "off",
|
|
||||||
"@typescript-eslint/no-duplicate-type-constituents": "off",
|
|
||||||
"@typescript-eslint/array-type": "off",
|
|
||||||
"@typescript-eslint/prefer-function-type": "off"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"plugins": ["jest"],
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended-type-checked",
|
|
||||||
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
||||||
"plugin:jest/recommended",
|
|
||||||
"plugin:jest/style",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/no-unsafe-return": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-call": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
||||||
"@typescript-eslint/prefer-optional-chain": "off",
|
|
||||||
"@typescript-eslint/no-base-to-string": "off",
|
|
||||||
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
||||||
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
|
||||||
"@typescript-eslint/consistent-type-definitions": "off",
|
|
||||||
"@typescript-eslint/no-unused-vars": "off",
|
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
"@typescript-eslint/prefer-for-of": "off",
|
|
||||||
"@typescript-eslint/non-nullable-type-assertion-style": "off",
|
|
||||||
"@typescript-eslint/class-literal-property-style": "off",
|
|
||||||
"@typescript-eslint/no-redundant-type-constituents": "off",
|
|
||||||
"@typescript-eslint/prefer-string-starts-ends-with": "off",
|
|
||||||
"@typescript-eslint/no-duplicate-type-constituents": "off",
|
|
||||||
"@typescript-eslint/array-type": "off",
|
|
||||||
"@typescript-eslint/prefer-function-type": "off"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"parserOptions": {
|
|
||||||
"ecmaFeatures": {
|
|
||||||
"jsx": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"plugins": ["@typescript-eslint", "react"],
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended-type-checked",
|
|
||||||
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
||||||
"plugin:react/recommended",
|
|
||||||
"plugin:react-hooks/recommended",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"settings": {
|
|
||||||
"react": {
|
|
||||||
"version": "detect"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/no-unsafe-return": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-call": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
||||||
"@typescript-eslint/no-misused-promises": [
|
|
||||||
"error",
|
|
||||||
{
|
|
||||||
"checksVoidReturn": {
|
|
||||||
"attributes": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@typescript-eslint/prefer-optional-chain": "off",
|
|
||||||
"@typescript-eslint/no-base-to-string": "off",
|
|
||||||
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
||||||
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
|
||||||
"@typescript-eslint/consistent-type-definitions": "off",
|
|
||||||
"@typescript-eslint/no-unused-vars": "off",
|
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
"@typescript-eslint/prefer-for-of": "off",
|
|
||||||
"@typescript-eslint/non-nullable-type-assertion-style": "off",
|
|
||||||
"@typescript-eslint/class-literal-property-style": "off",
|
|
||||||
"@typescript-eslint/no-redundant-type-constituents": "off",
|
|
||||||
"@typescript-eslint/prefer-string-starts-ends-with": "off",
|
|
||||||
"@typescript-eslint/no-duplicate-type-constituents": "off",
|
|
||||||
"@typescript-eslint/array-type": "off",
|
|
||||||
"@typescript-eslint/prefer-function-type": "off",
|
|
||||||
"react/prop-types": "off"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"plugins": ["jest"],
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended-type-checked",
|
|
||||||
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
||||||
"plugin:react/recommended",
|
|
||||||
"plugin:react-hooks/recommended",
|
|
||||||
"plugin:jest/recommended",
|
|
||||||
"plugin:jest/style",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/no-unsafe-return": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-call": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
||||||
"@typescript-eslint/prefer-optional-chain": "off",
|
|
||||||
"@typescript-eslint/no-base-to-string": "off",
|
|
||||||
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
||||||
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
|
||||||
"@typescript-eslint/consistent-type-definitions": "off",
|
|
||||||
"@typescript-eslint/no-unused-vars": "off",
|
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
"@typescript-eslint/prefer-for-of": "off",
|
|
||||||
"@typescript-eslint/non-nullable-type-assertion-style": "off",
|
|
||||||
"@typescript-eslint/class-literal-property-style": "off",
|
|
||||||
"@typescript-eslint/no-redundant-type-constituents": "off",
|
|
||||||
"@typescript-eslint/prefer-string-starts-ends-with": "off",
|
|
||||||
"@typescript-eslint/no-duplicate-type-constituents": "off",
|
|
||||||
"@typescript-eslint/array-type": "off",
|
|
||||||
"@typescript-eslint/prefer-function-type": "off"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,13 +2,10 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.25.2",
|
"@babel/core": "^7.25.2",
|
||||||
"@babel/eslint-parser": "^7.25.1",
|
|
||||||
"@changesets/cli": "^2.27.7",
|
"@changesets/cli": "^2.27.7",
|
||||||
"@eslint/compat": "^1.1.1",
|
"@eslint/compat": "^1.1.1",
|
||||||
"@eslint/js": "^8.57.0",
|
"@eslint/js": "^8.57.0",
|
||||||
"@nrwl/nx-cloud": "^19.0.0",
|
"@nrwl/nx-cloud": "^19.0.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
||||||
"@typescript-eslint/parser": "^8.0.1",
|
|
||||||
"eslint": "^8.57.0",
|
"eslint": "^8.57.0",
|
||||||
"eslint-config-prettier": "^9.1.0",
|
"eslint-config-prettier": "^9.1.0",
|
||||||
"eslint-plugin-jest": "^28.7.0",
|
"eslint-plugin-jest": "^28.7.0",
|
||||||
|
|
|
@ -45,11 +45,6 @@
|
||||||
"@types/color": "^3.0.6",
|
"@types/color": "^3.0.6",
|
||||||
"@types/jest": "^29.5.12",
|
"@types/jest": "^29.5.12",
|
||||||
"@types/lodash-es": "^4.17.12",
|
"@types/lodash-es": "^4.17.12",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
||||||
"@typescript-eslint/parser": "^8.0.1",
|
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"eslint-config-prettier": "^9.1.0",
|
|
||||||
"eslint-plugin-jest": "^28.7.0",
|
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-jsdom": "^29.7.0",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"rimraf": "^6.0.1",
|
"rimraf": "^6.0.1",
|
||||||
|
|
|
@ -27,14 +27,8 @@
|
||||||
"@types/react": "^18.3.3",
|
"@types/react": "^18.3.3",
|
||||||
"@types/react-dom": "^18.3.0",
|
"@types/react-dom": "^18.3.0",
|
||||||
"@types/styled-components": "^5.1.34",
|
"@types/styled-components": "^5.1.34",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
||||||
"@typescript-eslint/parser": "^8.0.1",
|
|
||||||
"babel-loader": "^9.1.3",
|
"babel-loader": "^9.1.3",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"eslint-config-prettier": "^9.1.0",
|
|
||||||
"eslint-plugin-react": "^7.35.0",
|
|
||||||
"eslint-plugin-react-hooks": "^4.6.2",
|
|
||||||
"fork-ts-checker-webpack-plugin": "^9.0.2",
|
"fork-ts-checker-webpack-plugin": "^9.0.2",
|
||||||
"html-webpack-plugin": "^5.6.0",
|
"html-webpack-plugin": "^5.6.0",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
|
|
|
@ -43,13 +43,6 @@
|
||||||
"@types/jest": "^29.5.12",
|
"@types/jest": "^29.5.12",
|
||||||
"@types/react": "^18.3.3",
|
"@types/react": "^18.3.3",
|
||||||
"@types/react-test-renderer": "^18.3.0",
|
"@types/react-test-renderer": "^18.3.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
||||||
"@typescript-eslint/parser": "^8.0.1",
|
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"eslint-config-prettier": "^9.1.0",
|
|
||||||
"eslint-plugin-jest": "^28.7.0",
|
|
||||||
"eslint-plugin-react": "^7.35.0",
|
|
||||||
"eslint-plugin-react-hooks": "^4.6.2",
|
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-jsdom": "^29.7.0",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"react": "^18.3.1",
|
"react": "^18.3.1",
|
||||||
|
|
|
@ -11,9 +11,6 @@ importers:
|
||||||
'@babel/core':
|
'@babel/core':
|
||||||
specifier: ^7.25.2
|
specifier: ^7.25.2
|
||||||
version: 7.25.2
|
version: 7.25.2
|
||||||
'@babel/eslint-parser':
|
|
||||||
specifier: ^7.25.1
|
|
||||||
version: 7.25.1(@babel/core@7.25.2)(eslint@8.57.0)
|
|
||||||
'@changesets/cli':
|
'@changesets/cli':
|
||||||
specifier: ^2.27.7
|
specifier: ^2.27.7
|
||||||
version: 2.27.7
|
version: 2.27.7
|
||||||
|
@ -26,12 +23,6 @@ importers:
|
||||||
'@nrwl/nx-cloud':
|
'@nrwl/nx-cloud':
|
||||||
specifier: ^19.0.0
|
specifier: ^19.0.0
|
||||||
version: 19.0.0
|
version: 19.0.0
|
||||||
'@typescript-eslint/eslint-plugin':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(@typescript-eslint/parser@8.0.1)(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
'@typescript-eslint/parser':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
eslint:
|
eslint:
|
||||||
specifier: ^8.57.0
|
specifier: ^8.57.0
|
||||||
version: 8.57.0
|
version: 8.57.0
|
||||||
|
@ -382,21 +373,6 @@ importers:
|
||||||
'@types/lodash-es':
|
'@types/lodash-es':
|
||||||
specifier: ^4.17.12
|
specifier: ^4.17.12
|
||||||
version: 4.17.12
|
version: 4.17.12
|
||||||
'@typescript-eslint/eslint-plugin':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(@typescript-eslint/parser@8.0.1)(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
'@typescript-eslint/parser':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
eslint:
|
|
||||||
specifier: ^8.57.0
|
|
||||||
version: 8.57.0
|
|
||||||
eslint-config-prettier:
|
|
||||||
specifier: ^9.1.0
|
|
||||||
version: 9.1.0(eslint@8.57.0)
|
|
||||||
eslint-plugin-jest:
|
|
||||||
specifier: ^28.7.0
|
|
||||||
version: 28.7.0(@typescript-eslint/eslint-plugin@8.0.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.4)
|
|
||||||
jest:
|
jest:
|
||||||
specifier: ^29.7.0
|
specifier: ^29.7.0
|
||||||
version: 29.7.0(@types/node@20.14.14)(ts-node@10.9.2)
|
version: 29.7.0(@types/node@20.14.14)(ts-node@10.9.2)
|
||||||
|
@ -431,27 +407,6 @@ importers:
|
||||||
'@types/react-test-renderer':
|
'@types/react-test-renderer':
|
||||||
specifier: ^18.3.0
|
specifier: ^18.3.0
|
||||||
version: 18.3.0
|
version: 18.3.0
|
||||||
'@typescript-eslint/eslint-plugin':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(@typescript-eslint/parser@8.0.1)(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
'@typescript-eslint/parser':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
eslint:
|
|
||||||
specifier: ^8.57.0
|
|
||||||
version: 8.57.0
|
|
||||||
eslint-config-prettier:
|
|
||||||
specifier: ^9.1.0
|
|
||||||
version: 9.1.0(eslint@8.57.0)
|
|
||||||
eslint-plugin-jest:
|
|
||||||
specifier: ^28.7.0
|
|
||||||
version: 28.7.0(@typescript-eslint/eslint-plugin@8.0.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.4)
|
|
||||||
eslint-plugin-react:
|
|
||||||
specifier: ^7.35.0
|
|
||||||
version: 7.35.0(eslint@8.57.0)
|
|
||||||
eslint-plugin-react-hooks:
|
|
||||||
specifier: ^4.6.2
|
|
||||||
version: 4.6.2(eslint@8.57.0)
|
|
||||||
jest:
|
jest:
|
||||||
specifier: ^29.7.0
|
specifier: ^29.7.0
|
||||||
version: 29.7.0(@types/node@20.14.14)(ts-node@10.9.2)
|
version: 29.7.0(@types/node@20.14.14)(ts-node@10.9.2)
|
||||||
|
@ -522,30 +477,12 @@ importers:
|
||||||
'@types/styled-components':
|
'@types/styled-components':
|
||||||
specifier: ^5.1.34
|
specifier: ^5.1.34
|
||||||
version: 5.1.34
|
version: 5.1.34
|
||||||
'@typescript-eslint/eslint-plugin':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(@typescript-eslint/parser@8.0.1)(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
'@typescript-eslint/parser':
|
|
||||||
specifier: ^8.0.1
|
|
||||||
version: 8.0.1(eslint@8.57.0)(typescript@5.5.4)
|
|
||||||
babel-loader:
|
babel-loader:
|
||||||
specifier: ^9.1.3
|
specifier: ^9.1.3
|
||||||
version: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0)
|
version: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0)
|
||||||
cross-env:
|
cross-env:
|
||||||
specifier: ^7.0.3
|
specifier: ^7.0.3
|
||||||
version: 7.0.3
|
version: 7.0.3
|
||||||
eslint:
|
|
||||||
specifier: ^8.57.0
|
|
||||||
version: 8.57.0
|
|
||||||
eslint-config-prettier:
|
|
||||||
specifier: ^9.1.0
|
|
||||||
version: 9.1.0(eslint@8.57.0)
|
|
||||||
eslint-plugin-react:
|
|
||||||
specifier: ^7.35.0
|
|
||||||
version: 7.35.0(eslint@8.57.0)
|
|
||||||
eslint-plugin-react-hooks:
|
|
||||||
specifier: ^4.6.2
|
|
||||||
version: 4.6.2(eslint@8.57.0)
|
|
||||||
fork-ts-checker-webpack-plugin:
|
fork-ts-checker-webpack-plugin:
|
||||||
specifier: ^9.0.2
|
specifier: ^9.0.2
|
||||||
version: 9.0.2(typescript@5.5.4)(webpack@5.93.0)
|
version: 9.0.2(typescript@5.5.4)(webpack@5.93.0)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user