Reputation: 296
When I type in:
const styles = StyleSheet.create({
container: {}
})
Then I add a comma after container
brace, it always popup a window to tip me some infomations I never watch.
container: {},
So what is this popup window? eslint tips? or something else?
Is it possible to disable this and how?
Upvotes: 10
Views: 4685
Reputation: 1724
You can disable it with this parameter in user settings, according with reported issue:
"editor.parameterHints.enabled": false
Upvotes: 12