Lets says I am creating a component "Component" and its children or modifier. BEM style would be
<div class="Component Component--modifier">
<div class="Component__child"></div>
</div>
I'd like write it as this way
<div class="Component Component--modifier">
<div class="_child"></div>
</div>
In CSS, I would strictly write _child class inside Component scope so there isn't any globle _child class.
I wonder what potential risk or cons my style guide would cause?