Skip to content

Commit d1ea065

Browse files
style: indent according to indent-binary-ops
1 parent 46a02f5 commit d1ea065

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rules/no-floating-observables.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const defaultOptions: readonly {
88

99
const messageBase
1010
= 'Observables must be subscribed to, returned, converted to a promise and awaited, '
11-
+ 'or be explicitly marked as ignored with the `void` operator.';
11+
+ 'or be explicitly marked as ignored with the `void` operator.';
1212

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

src/rules/no-sharereplay.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const noSharereplayRule = ruleCreator({
3939
if (allowConfig) {
4040
report
4141
= node.arguments.length !== 1
42-
|| node.arguments[0].type !== AST_NODE_TYPES.ObjectExpression;
42+
|| node.arguments[0].type !== AST_NODE_TYPES.ObjectExpression;
4343
}
4444
if (report) {
4545
context.report({

0 commit comments

Comments
 (0)