metals-vscode
metals-vscode copied to clipboard
Add Filesystem API to jars
Linked to https://github.com/scalameta/metals/pull/3750 and https://github.com/scalameta/metals-languageclient/pull/461
@kpodsiad Do you know how do fix the ESLint errors here? I'm trying to implement an interface method but I don't need the parameters - hence they're unused. I thought prefixing with _ caused the errors to be ignored but that only works with local compilation, not the github actions ESLint stage.
I've copied Microsoft's example method from here
@Arthurm1 you try different options that disable ESLint errors for unused params - https://eslint.org/docs/rules/no-unused-vars#varsignorepattern. varsIgnorePattern might be a could candidate - I used this to suppress errors for _ here
@kpodsiad That works thanks!