Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ankithm28 committed Jun 15, 2021
1 parent 8720b32 commit a7aeb19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dev/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export const completionSpec: Fig.Spec = {
return false;
})
.map((file) => {
const isJsFile = typeof file.name === "string" && file.name.endsWith(".js")
const isJsFile =
typeof file.name === "string" && file.name.endsWith(".js");

return {
...file,
Expand Down
3 changes: 2 additions & 1 deletion dev/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export const completionSpec: Fig.Spec = {
return false;
})
.map((file) => {
const isPyFile = typeof file.name === "string" && file.name.endsWith(".js")
const isPyFile =
typeof file.name === "string" && file.name.endsWith(".js");

return {
...file,
Expand Down
3 changes: 2 additions & 1 deletion dev/python3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export const completionSpec: Fig.Spec = {
return false;
})
.map((file) => {
const isPyFile = typeof file.name === "string" && file.name.endsWith(".js")
const isPyFile =
typeof file.name === "string" && file.name.endsWith(".js");

return {
...file,
Expand Down

0 comments on commit a7aeb19

Please sign in to comment.