Important
This rule is not an official rule of Microsoft.
textlint rule for Azure product names.
This rule inspired by textlint-rule-aws-service-name.
- Check Azure product names
- For examples:
Azure Active Directory->Azure Entra IDMicrosoft AI Studio->Azure AI StudioAIStudio->AI Studio
- For examples:
Install with npm:
npm install textlint-rule-azure-product-nameVia .textlintrc.json(Recommended)
{
"rules": {
"azure-product-name": true
}
}Via CLI
textlint --rule azure-product-name README.mdBuilds source codes for publish to the lib folder.
You can write ES2015+ source codes in src/ folder.
npm run buildRun test code in test folder.
Test textlint rule by textlint-tester.
npm testYou can also test each test file by running the following.
# Run only the test files under specs/.
npm run test:jest
# or npm run jest# run only test files under test/.
npm run test:lint
# or npm run testLintMIT © dora56