From 931daf14b0d2b98d7269b225e753808a9d8c29b7 Mon Sep 17 00:00:00 2001 From: BJ0815 Date: Fri, 15 Jul 2022 22:26:53 +0800 Subject: [PATCH] fix(component-name-in-template-casing): update rule to support + `, + options: ['PascalCase'], + output: ` + + + `, + errors: ['Component name "the-component" is not PascalCase.'] + }, + { + code: ` + + + `, + options: ['kebab-case'], + output: ` + + + `, + errors: ['Component name "TheComponent" is not kebab-case.'] } ] })