docs(eslint-plugin): add missing rule to README (#593)

* Fix eslint-plugin README

* Add change files

* Update change/@griffel-eslint-plugin-af581fe2-88f5-44cb-bb57-3d71b2cfcf03.json

---------

Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
This commit is contained in:
Tiger Oakes 2024-08-08 01:43:47 -07:00 коммит произвёл GitHub
Родитель 83dc4f00cb
Коммит bdb268b474
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 14 добавлений и 6 удалений

Просмотреть файл

@ -0,0 +1,7 @@
{
"comment": "docs: update README",
"type": "none",
"packageName": "@griffel/eslint-plugin",
"email": "tigeroakes@microsoft.com",
"dependentChangeType": "patch"
}

Просмотреть файл

@ -42,9 +42,10 @@ You can find more info about enabled rules in the [Supported Rules section](#sup
**Key**: 🔧 = fixable
| Name | Description | 🔧 |
| ------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --- |
| [`@griffel/hook-naming`](./src/rules/hook-naming.md) | Ensure that hooks returned by the `makeStyles()` function start with "use" | ❌ |
| [`@griffel/no-shorthands`](./src/rules/no-shorthands.md) | Enforce usage of CSS longhands | ✅ |
| [`@griffel/styles-file`](./src/rules/styles-file.md) | Ensures that all `makeStyles()` and `makeResetStyles()` calls are placed in a `.styles.js` or `.styles.ts` file | ❌ |
| [`@griffel/pseudo-element-naming`](./src/rules/pseudo-element-naming.md) | Ensures that all Pseudo Elements start with two colons | ✅ |
| Name | Description | 🔧 |
| ------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --- |
| [`@griffel/hook-naming`](./src/rules/hook-naming.md) | Ensure that hooks returned by the `makeStyles()` function start with "use" | ❌ |
| [`@griffel/no-invalid-shorthand-arguments`](./src/rules/no-invalid-shorthand-arguments.md) | All shorthands must not use space separators, and instead pass in multiple arguments | ✅ |
| [`@griffel/no-shorthands`](./src/rules/no-shorthands.md) | Enforce usage of CSS longhands | ✅ |
| [`@griffel/styles-file`](./src/rules/styles-file.md) | Ensures that all `makeStyles()` and `makeResetStyles()` calls are placed in a `.styles.js` or `.styles.ts` file | ❌ |
| [`@griffel/pseudo-element-naming`](./src/rules/pseudo-element-naming.md) | Ensures that all Pseudo Elements start with two colons | ✅ |