diff --git a/apps/docs/.eslintrc.json b/apps/docs/.eslintrc.json index 66d9a5c27..891dea474 100644 --- a/apps/docs/.eslintrc.json +++ b/apps/docs/.eslintrc.json @@ -29,7 +29,8 @@ "PackageInstallation": true, "PropTable": true, "CodeOnlyExample": true, - "Example": true + "Example": true, + "FeatureFlag": true }, "overrides": [ { @@ -57,21 +58,31 @@ ], "react/destructuring-assignment": "off", "no-param-reassign": "off", - "no-restricted-imports": ["error", { - "patterns": [ - { - "group": ["../../index.ts", "../index.ts", "../../../index.ts", "./index.ts"], - "message": "Avoid importing from index.ts files directly next or above the current file" - } - ], - "paths": [ - { - "name": "react", - "importNames": ["default"], - "message": "import React from \"react\" is no longer necessary and should be avoided. " - } - ] - }] + "no-restricted-imports": [ + "error", + { + "patterns": [ + { + "group": [ + "../../index.ts", + "../index.ts", + "../../../index.ts", + "./index.ts" + ], + "message": "Avoid importing from index.ts files directly next or above the current file" + } + ], + "paths": [ + { + "name": "react", + "importNames": [ + "default" + ], + "message": "import React from \"react\" is no longer necessary and should be avoided. " + } + ] + } + ] } } ] diff --git a/apps/docs/content/components/buttons/Button.mdx b/apps/docs/content/components/buttons/Button.mdx index e8278d6b4..6c3c2d123 100644 --- a/apps/docs/content/components/buttons/Button.mdx +++ b/apps/docs/content/components/buttons/Button.mdx @@ -15,7 +15,7 @@ links: ## Guidelines - TODO: If we have some guidelines about this component's usage + TODO: If we have some guidelines about this component's usage ### Accessibility ?