-
-
Notifications
You must be signed in to change notification settings - Fork 88
Add ESLint recommended rules #776
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
8e4e90c
915ca16
5dfdb3d
f19eb7d
f0c738b
6c5add7
529fbcf
c3da0a8
186a308
bb4cdac
33daaf5
67190bb
afbdc0a
8bb9add
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ export async function activate(context: vscode.ExtensionContext) { | |
commandServerApi: () => commandServerApi, | ||
getNodeAtLocation: () => getNodeAtLocation, | ||
} as FactoryMap<Graph>); | ||
graph.debug.init(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The way the graph works, accessing an attribute will cause the component to be instantiated, so it's possible this line was actually doing something There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe this is the only remaining issue on this PR There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reverted this change. I'm not convinced this line is doing much in practice, but we can look into it later. |
||
graph.snippets.init(); | ||
await graph.decorations.init(); | ||
graph.hatTokenMap.init(); | ||
|
@@ -94,4 +93,6 @@ export async function activate(context: vscode.ExtensionContext) { | |
} | ||
|
||
// this method is called when your extension is deactivated | ||
export function deactivate() {} | ||
export function deactivate() { | ||
// do nothing | ||
pokey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} |
Uh oh!
There was an error while loading. Please reload this page.