From e4bc75cd95447413a78392fb2293615ec71167f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 22 Sep 2023 00:45:15 +0000 Subject: [PATCH] Version Packages --- .changeset/wild-mayflies-vanish.md | 28 --------------------------- CHANGELOG.md | 31 ++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 32 insertions(+), 29 deletions(-) delete mode 100644 .changeset/wild-mayflies-vanish.md diff --git a/.changeset/wild-mayflies-vanish.md b/.changeset/wild-mayflies-vanish.md deleted file mode 100644 index 3c3fa01..0000000 --- a/.changeset/wild-mayflies-vanish.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -'eslint-config-seek': minor ---- - -Adds [react/jsx-curly-brace-presence][docs] as an error. -This removes unnecessary braces around strings in props and children. - -It also enforces braces around expressions in props and children. - -[docs]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-curly-brace-presence.md - -### Examples - -```diff -// Unecessary braces around string prop -- -+ -``` -```diff -// Unecessary braces around string child -- {'Hello'} -+ Hello -``` -```diff -// Mandatory braces around prop expression --