Is it possible to make VS Code highlight unused parameters? I'm working on a Vue component with TypeScript if this make any difference.
It shows unused imports just fine:
I have added this to my settings.json file but it didn't help.
"editor.showUnused": true,
"workbench.colorCustomizations": {
"editorUnnecessaryCode.border": "#ff0000"
}
Vue component example
import Vue from 'vue';
import { Component } from 'vue-property-decorator';
@Component
export default class VueComponentExample extends Vue {
bla: boolean = false;
}
</script>