ci(docs): Disable eslint rule for unescaped entities
eslint-plugin-react is emitting a lot of react/no-unescaped-entities errors in mdx files, primarily due to apostrophes. It seems not ideal to have to escape every apostrophe in all mdx text, so this commit disables the check. There might be a better way to handle this issue, but I am not aware of one right now.
This commit is contained in:
parent
fa91648cce
commit
7196f9f075
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ module.exports = {
|
||||||
sourceType: "module",
|
sourceType: "module",
|
||||||
},
|
},
|
||||||
plugins: ["react"],
|
plugins: ["react"],
|
||||||
rules: {},
|
rules: { "react/no-unescaped-entities": "off" },
|
||||||
settings: {
|
settings: {
|
||||||
react: {
|
react: {
|
||||||
version: "detect",
|
version: "detect",
|
||||||
|
|
Loading…
Add table
Reference in a new issue