From 776618d459c35a966be937e8c88cd3fb8c448377 Mon Sep 17 00:00:00 2001 From: Logan Smyth Date: Tue, 24 Apr 2018 11:31:46 -0700 Subject: [PATCH] Misc linting fixes. --- src/utils/function.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils/function.js b/src/utils/function.js index d224a2ca5c..5d67b3c1c0 100644 --- a/src/utils/function.js +++ b/src/utils/function.js @@ -23,7 +23,9 @@ export function findFunctionText( return null; } - const { location: { start, end } } = func; + const { + location: { start, end } + } = func; const lines = source.text.split("\n"); const firstLine = lines[start.line - 1].slice(start.column); const lastLine = lines[end.line - 1].slice(0, end.column);