File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22// See LICENSE in the project root for license information.
33
44import type { TSESLint } from '@typescript-eslint/utils' ;
5- import type { Linter } from 'eslint' ;
65
76import { hoistJestMock } from './hoist-jest-mock' ;
87import { noBackslashImportsRule } from './no-backslash-imports' ;
@@ -15,11 +14,9 @@ import { normalizedImportsRule } from './normalized-imports';
1514import { typedefVar } from './typedef-var' ;
1615import { importRequiresChunkNameRule } from './import-requires-chunk-name' ;
1716import { pairReactDomRenderUnmountRule } from './pair-react-dom-render-unmount' ;
18- import { sortPackageJsonProcessor } from './sort-package-json' ;
1917
2018interface IPlugin {
2119 rules : { [ ruleName : string ] : TSESLint . RuleModule < string , unknown [ ] > } ;
22- processors : { [ processorName : string ] : Linter . Processor } ;
2320}
2421
2522const plugin : IPlugin = {
@@ -56,10 +53,6 @@ const plugin: IPlugin = {
5653
5754 // Full name: "@rushstack/pair-react-dom-render-unmount"
5855 'pair-react-dom-render-unmount' : pairReactDomRenderUnmountRule
59- } ,
60-
61- processors : {
62- 'sort-package-json' : sortPackageJsonProcessor
6356 }
6457} ;
6558
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments