mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-03 20:27:20 +02:00
* feat: add eslint plugin * refactor * add tests * fixups! * fix(no-dynamic-i18n-messages): make translate() recognize template literals * refactor: rename rule no-dynamic-i18n-messages --> string-literal-i18n-messages * feat: add ignoreStrings option and refactor * docs: migrate docs to /docs/api/plugins * docs: fix anchor links in README.md * fix: add some ignored strings * docs: update eslint-plugin docs * fix: update README link * docs: various updates - Reorder sidebar entries - Fix title size - Use Markdown file paths - Simplify relative links * address reviews * wording polish * add npmignore * fix all internal warnings * doc improvements * fix test Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
const rule = require('../string-literal-i18n-messages');
|
|
const {RuleTester} = require('eslint');
|
|
const {getCommonValidTests} = require('../../util');
|
|
|
|
const errorsJSX = [{messageId: 'translateChildren', type: 'JSXElement'}];
|
|
const errorsFunc = [{messageId: 'translateArg', type: 'Identifier'}];
|
|
|
|
const ruleTester = new RuleTester({
|
|
parserOptions: {
|
|
ecmaVersion: 2022,
|
|
ecmaFeatures: {jsx: true},
|
|
},
|
|
});
|
|
ruleTester.run('string-literal-i18n-messages', rule, {
|
|
valid: [...getCommonValidTests()],
|
|
|
|
invalid: [
|
|
{
|
|
code: '<Translate>{text}</Translate>',
|
|
errors: errorsJSX,
|
|
},
|
|
{
|
|
code: '<Translate>Hi {text} my friend</Translate>',
|
|
errors: errorsJSX,
|
|
},
|
|
{
|
|
code: '<Translate> {text} </Translate>',
|
|
errors: errorsJSX,
|
|
},
|
|
{
|
|
code: '<Translate>`{text}`</Translate>',
|
|
errors: errorsJSX,
|
|
},
|
|
{
|
|
// eslint-disable-next-line no-template-curly-in-string
|
|
code: '<Translate>{`${text}`}</Translate>',
|
|
errors: errorsJSX,
|
|
},
|
|
{
|
|
code: 'translate({message: metaTitle})',
|
|
errors: errorsFunc,
|
|
},
|
|
],
|
|
});
|