schoero / eslint-plugin-readable-tailwind

ESLint plugin to automatically break up long tailwind class strings into multiple lines for better readability.
MIT License
63 stars 3 forks source link

fix: escape nested quotes #33

Closed schoero closed 1 month ago

schoero commented 1 month ago

Escapes nested quotes

// invalid
<img class="content-[""]" />
// valid
<img class="content-[\"\"]" />