Skip to content

Commit 66d0f53

Browse files
style: lint fixes after stylistic 5.5.0 update
1 parent 79cdbc0 commit 66d0f53

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/rules/no-floating-observables.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const messageBase
1111
+ 'or be explicitly marked as ignored with the `void` operator.';
1212

1313
const messageBaseNoVoid
14-
= 'Observables must be subscribed to, returned, or converted to a promise and awaited.';
14+
= 'Observables must be subscribed to, returned, or converted to a promise and awaited.';
1515

1616
export const noFloatingObservablesRule = ruleCreator({
1717
defaultOptions,

src/rules/no-redundant-notify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function isExpressionObserver(
9494
couldBeType: (
9595
node: es.Node,
9696
name: string | RegExp,
97-
qualified?: { name: RegExp }
97+
qualified?: { name: RegExp },
9898
) => boolean,
9999
): boolean {
100100
if (!isCallExpression(expressionStatement.expression)) {

tests/etc/from-fixture.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function fromFixture<
2020
'code' | 'errors'
2121
> & {
2222
suggestions?: readonly SuggestionOutput<TMessageIds>[] | null;
23-
}
23+
},
2424
): InvalidTestCase<TMessageIds, TOptions>;
2525
export function fromFixture<
2626
TMessageIds extends string,

0 commit comments

Comments
 (0)