Example

I also see the issue with:
<label>foo<meter /></label>
<label>foo<output /></label>
<label>foo<progress /></label>
Workaround
Add the following to your .eslintrc.js
module.exports = { rules:
'jsx-a11y/label-has-associated-control': [`error`, {controlComponents:[ 'textarea', 'meter', 'output', 'progress' ]}],
}