Skip to content

Commit 9fef5ac

Browse files
committed
Rename eslint-config-local to local-eslint-config.
1 parent 3af4a02 commit 9fef5ac

File tree

105 files changed

+167
-173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+167
-173
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ These GitHub repositories provide supplementary resources for Rush Stack:
175175
| [/build-tests/rush-redis-cobuild-plugin-integration-test](./build-tests/rush-redis-cobuild-plugin-integration-test/) | Tests connecting to an redis server |
176176
| [/build-tests/set-webpack-public-path-plugin-webpack4-test](./build-tests/set-webpack-public-path-plugin-webpack4-test/) | Building this project tests the set-webpack-public-path-plugin using Webpack 4 |
177177
| [/build-tests/ts-command-line-test](./build-tests/ts-command-line-test/) | Building this project is a regression test for ts-command-line |
178-
| [/eslint/eslint-config-local](./eslint/eslint-config-local/) | An ESLint configuration consumed projects inside the rushstack repo. |
178+
| [/eslint/local-eslint-config](./eslint/local-eslint-config/) | An ESLint configuration consumed projects inside the rushstack repo. |
179179
| [/libraries/rush-themed-ui](./libraries/rush-themed-ui/) | Rush Component Library: a set of themed components for rush projects |
180180
| [/libraries/rushell](./libraries/rushell/) | Execute shell commands using a consistent syntax on every platform |
181181
| [/repo-scripts/doc-plugin-rush-stack](./repo-scripts/doc-plugin-rush-stack/) | API Documenter plugin used with the rushstack.io website |

apps/api-extractor/.eslintrc.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node-trusted-tool', 'eslint-config-local/mixins/friendly-locals'],
7+
extends: ['local-eslint-config/profile/node-trusted-tool', 'local-eslint-config/mixins/friendly-locals'],
88
parserOptions: { tsconfigRootDir: __dirname },
99

1010
overrides: [

apps/api-extractor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"typescript": "~5.0.4"
5252
},
5353
"devDependencies": {
54-
"eslint-config-local": "workspace:*",
54+
"local-eslint-config": "workspace:*",
5555
"@rushstack/heft": "0.59.0",
5656
"@rushstack/heft-node-rig": "2.2.23",
5757
"@types/heft-jest": "1.0.1",

apps/heft/.eslintrc.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node-trusted-tool', 'eslint-config-local/mixins/friendly-locals'],
7+
extends: ['local-eslint-config/profile/node-trusted-tool', 'local-eslint-config/mixins/friendly-locals'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

apps/heft/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"devDependencies": {
5353
"@microsoft/api-extractor": "workspace:*",
54-
"eslint-config-local": "workspace:*",
54+
"local-eslint-config": "workspace:*",
5555
"@rushstack/heft": "0.59.0",
5656
"@rushstack/heft-node-rig": "2.2.23",
5757
"@types/argparse": "1.0.38",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-node-basic-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"_phase:test": "heft run --only test -- --clean"
1212
},
1313
"devDependencies": {
14-
"eslint-config-local": "workspace:*",
14+
"local-eslint-config": "workspace:*",
1515
"@rushstack/heft": "workspace:*",
1616
"@rushstack/heft-jest-plugin": "workspace:*",
1717
"@rushstack/heft-lint-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-node-jest-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"_phase:test": "heft run --only test -- --clean"
1111
},
1212
"devDependencies": {
13-
"eslint-config-local": "workspace:*",
13+
"local-eslint-config": "workspace:*",
1414
"@rushstack/heft": "workspace:*",
1515
"@rushstack/heft-jest-plugin": "workspace:*",
1616
"@rushstack/heft-lint-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-node-rig-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"_phase:test": "heft run --only test -- --clean"
1212
},
1313
"devDependencies": {
14-
"eslint-config-local": "workspace:*",
14+
"local-eslint-config": "workspace:*",
1515
"@rushstack/heft": "workspace:*",
1616
"@rushstack/heft-node-rig": "workspace:*",
1717
"@types/heft-jest": "1.0.1",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-serverless-stack-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"_phase:test": "heft run --only test -- --clean"
1414
},
1515
"devDependencies": {
16-
"eslint-config-local": "workspace:*",
16+
"local-eslint-config": "workspace:*",
1717
"@rushstack/heft-jest-plugin": "workspace:*",
1818
"@rushstack/heft-lint-plugin": "workspace:*",
1919
"@rushstack/heft-serverless-stack-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/web-app', 'eslint-config-local/mixins/react'],
7+
extends: ['local-eslint-config/profile/web-app', 'local-eslint-config/mixins/react'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-storybook-react-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"devDependencies": {
2020
"@babel/core": "~7.20.0",
21-
"eslint-config-local": "workspace:*",
21+
"local-eslint-config": "workspace:*",
2222
"@rushstack/heft-jest-plugin": "workspace:*",
2323
"@rushstack/heft-lint-plugin": "workspace:*",
2424
"@rushstack/heft-storybook-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/web-app', 'eslint-config-local/mixins/react'],
7+
extends: ['local-eslint-config/profile/web-app', 'local-eslint-config/mixins/react'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-web-rig-app-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"tslib": "~2.3.1"
1717
},
1818
"devDependencies": {
19-
"eslint-config-local": "workspace:*",
19+
"local-eslint-config": "workspace:*",
2020
"@rushstack/heft-web-rig": "workspace:*",
2121
"@rushstack/heft": "workspace:*",
2222
"@types/react-dom": "16.9.14",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/web-app', 'eslint-config-local/mixins/react'],
7+
extends: ['local-eslint-config/profile/web-app', 'local-eslint-config/mixins/react'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-web-rig-library-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"tslib": "~2.3.1"
1919
},
2020
"devDependencies": {
21-
"eslint-config-local": "workspace:*",
21+
"local-eslint-config": "workspace:*",
2222
"@rushstack/heft-web-rig": "workspace:*",
2323
"@rushstack/heft": "workspace:*",
2424
"@types/react-dom": "16.9.14",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/web-app', 'eslint-config-local/mixins/react'],
7+
extends: ['local-eslint-config/profile/web-app', 'local-eslint-config/mixins/react'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests-samples/heft-webpack-basic-tutorial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"tslib": "~2.3.1"
1616
},
1717
"devDependencies": {
18-
"eslint-config-local": "workspace:*",
18+
"local-eslint-config": "workspace:*",
1919
"@rushstack/heft-jest-plugin": "workspace:*",
2020
"@rushstack/heft-lint-plugin": "workspace:*",
2121
"@rushstack/heft-typescript-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node-trusted-tool', 'eslint-config-local/mixins/friendly-locals'],
7+
extends: ['local-eslint-config/profile/node-trusted-tool', 'local-eslint-config/mixins/friendly-locals'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-example-plugin-01/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"tapable": "1.1.3"
1515
},
1616
"devDependencies": {
17-
"eslint-config-local": "workspace:*",
17+
"local-eslint-config": "workspace:*",
1818
"@rushstack/heft": "workspace:*",
1919
"@rushstack/heft-lint-plugin": "workspace:*",
2020
"@rushstack/heft-typescript-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node-trusted-tool', 'eslint-config-local/mixins/friendly-locals'],
7+
extends: ['local-eslint-config/profile/node-trusted-tool', 'local-eslint-config/mixins/friendly-locals'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-example-plugin-02/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
},
2121
"devDependencies": {
22-
"eslint-config-local": "workspace:*",
22+
"local-eslint-config": "workspace:*",
2323
"@rushstack/heft": "workspace:*",
2424
"@rushstack/heft-lint-plugin": "workspace:*",
2525
"@rushstack/heft-typescript-plugin": "workspace:*",
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-fastify-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"_phase:build": "heft run --only build -- --clean"
1313
},
1414
"devDependencies": {
15-
"eslint-config-local": "workspace:*",
15+
"local-eslint-config": "workspace:*",
1616
"@rushstack/heft": "workspace:*",
1717
"@rushstack/heft-lint-plugin": "workspace:*",
1818
"@rushstack/heft-typescript-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-jest-preset-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"devDependencies": {
1313
"@jest/types": "29.5.0",
14-
"eslint-config-local": "workspace:*",
14+
"local-eslint-config": "workspace:*",
1515
"@rushstack/heft": "workspace:*",
1616
"@rushstack/heft-jest-plugin": "workspace:*",
1717
"@rushstack/heft-lint-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-jest-reporters-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"devDependencies": {
1313
"@jest/reporters": "~29.5.0",
1414
"@jest/types": "29.5.0",
15-
"eslint-config-local": "workspace:*",
15+
"local-eslint-config": "workspace:*",
1616
"@rushstack/heft": "workspace:*",
1717
"@rushstack/heft-jest-plugin": "workspace:*",
1818
"@rushstack/heft-lint-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-node-everything-esm-module-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"devDependencies": {
1515
"@microsoft/api-extractor": "workspace:*",
16-
"eslint-config-local": "workspace:*",
16+
"local-eslint-config": "workspace:*",
1717
"@rushstack/heft": "workspace:*",
1818
"@rushstack/heft-api-extractor-plugin": "workspace:*",
1919
"@rushstack/heft-jest-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node'],
7+
extends: ['local-eslint-config/profile/node'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

build-tests/heft-node-everything-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"devDependencies": {
1414
"@microsoft/api-extractor": "workspace:*",
15-
"eslint-config-local": "workspace:*",
15+
"local-eslint-config": "workspace:*",
1616
"@rushstack/heft": "workspace:*",
1717
"@rushstack/heft-api-extractor-plugin": "workspace:*",
1818
"@rushstack/heft-jest-plugin": "workspace:*",
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2-
require('eslint-config-local/patch/modern-module-resolution');
2+
require('local-eslint-config/patch/modern-module-resolution');
33
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
4-
require('eslint-config-local/patch/custom-config-package-names');
4+
require('local-eslint-config/patch/custom-config-package-names');
55

66
module.exports = {
7-
extends: ['eslint-config-local/profile/node-trusted-tool', 'eslint-config-local/mixins/friendly-locals'],
7+
extends: ['local-eslint-config/profile/node-trusted-tool', 'local-eslint-config/mixins/friendly-locals'],
88
parserOptions: { tsconfigRootDir: __dirname }
99
};

0 commit comments

Comments
 (0)