-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a way to support custom modifier separator #69
Comments
I would love smth like this: |
How it should be pronounced? Just curious. |
block elem modifier as always. |
I think we need to add import bemNaming from 'bem-naming';
const myNaming = bemNaming({ modName: '--', modVal: '_' }) |
Maybe we should wrap delimiters to import bemNaming from 'bem-naming';
const myNaming = bemNaming({
delimiters: { elem: '__', modName: '--', modVal: '_' },
wordPattern: '[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*'
}); |
I'd suggest to make And I disagree with additional nesting with |
…0.7.0 Update eslint-config-pedant to version 0.7.0 🚀
like
block__elem_mod!!!val
For now it's impossible to do.
Purpose is using for Harry Roberts' notation:
block__elem--mod_val
.The text was updated successfully, but these errors were encountered: