diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 4a22035..3337aba 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -20,7 +20,6 @@ module.exports = { 'no-undef': 'off', 'no-unused-expressions': 'off', 'no-unused-vars': 'off', - quotes: 'off', semi: 'off', }, } diff --git a/README.md b/README.md index 9023e10..3cd9861 100644 --- a/README.md +++ b/README.md @@ -698,7 +698,7 @@ For example `h('div', {props: {className: 'container'}}, [...])` will produce a ```mjs ({ props: { - className: "container" + className: 'container' } }) ```