Skip to content

Commit 5106faa

Browse files
authored
Fix lint warnings for unused vars (#1654)
## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [ ] I have not broken the cheatsheet
1 parent aad313b commit 5106faa

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

packages/common/src/types/command/legacy/PartialTargetDescriptorV5.types.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ interface NothingMark {
1414
type: "nothing";
1515
}
1616

17-
interface LastCursorPositionMark {
18-
type: "lastCursorPosition";
19-
}
20-
2117
interface DecoratedSymbolMark {
2218
type: "decoratedSymbol";
2319
symbolColor: string;
@@ -162,18 +158,6 @@ type ScopeType =
162158
| CustomRegexScopeType
163159
| OneOfScopeType;
164160

165-
interface ContainingSurroundingPairModifier extends ContainingScopeModifier {
166-
scopeType: SurroundingPairScopeType;
167-
}
168-
169-
interface EverySurroundingPairModifier extends EveryScopeModifier {
170-
scopeType: SurroundingPairScopeType;
171-
}
172-
173-
type SurroundingPairModifier =
174-
| ContainingSurroundingPairModifier
175-
| EverySurroundingPairModifier;
176-
177161
interface InteriorOnlyModifier {
178162
type: "interiorOnly";
179163
}

0 commit comments

Comments
 (0)