/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/eslint-plugin/src/rules/index.ts
18 строк
645 B
Devansu Yadav
feat(eslint-plugin): new prefer-docusaurus-heading rule (#8384)
19 янв 2023, 19:08
Не верифицирован
19 янв 2023, 19:08
90e7e32
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import noHtmlLinks from './no-html-links'; import preferDocusaurusHeading from './prefer-docusaurus-heading'; import noUntranslatedText from './no-untranslated-text'; import stringLiteralI18nMessages from './string-literal-i18n-messages'; export default { 'no-untranslated-text': noUntranslatedText, 'string-literal-i18n-messages': stringLiteralI18nMessages, 'no-html-links': noHtmlLinks, 'prefer-docusaurus-heading': preferDocusaurusHeading, };