In the latest version of Visual Studio Code, the default settings have changed and inline parameter hints are always shown in the code despite me not using any setting for it. How do I disable them?
// in the below code, the text "predicate: " and "searchString: "
// are not actual contents of the file. They are inlay hints.
const indexOfFirstSummary = paragraphs.findIndex(predicate: (p) =>
p.startsWith(searchString: 'Focused development of the sixth edition')
const indexOfFirstNonSummary = paragraphs.findIndex(predicate: (p) =>
p.startsWith(searchString: 'Dozens of individuals representing many organisations')