Skip to content

Commit 5e87af2

Browse files
committed
chore: Lint
1 parent 1237cd6 commit 5e87af2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/json-rpc-engine/src/v2/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ export function stringify(value: unknown): string {
4848
return JSON.stringify(value, null, 2);
4949
}
5050

51-
const JsonRpcEngineErrorSymbol = Symbol.for('json-rpc-engine#JsonRpcEngineError');
51+
const JsonRpcEngineErrorSymbol = Symbol.for(
52+
'json-rpc-engine#JsonRpcEngineError',
53+
);
5254

5355
export class JsonRpcEngineError extends Error {
5456
private readonly [JsonRpcEngineErrorSymbol] = true;

0 commit comments

Comments
 (0)