From fdd69edf24c4a7b61872873ec2813cb3c2b86110 Mon Sep 17 00:00:00 2001 From: blam Date: Fri, 22 Jan 2021 16:06:18 +0100 Subject: [PATCH] chore: fix prettier --- .changeset/clean-rocks-ring.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.changeset/clean-rocks-ring.md b/.changeset/clean-rocks-ring.md index 94327c2ffe..706f3640c2 100644 --- a/.changeset/clean-rocks-ring.md +++ b/.changeset/clean-rocks-ring.md @@ -1,15 +1,14 @@ --- -"@backstage/cli": minor +'@backstage/cli': minor --- -We've bumped the `@eslint-typescript` packages to the latest, which now add some additional rules that might cause lint failures. +We've bumped the `@eslint-typescript` packages to the latest, which now add some additional rules that might cause lint failures. The main one which could become an issue is the [no-use-before-define](https://eslint.org/docs/rules/no-use-before-define) rule. Every plugin and app has the ability to override these rules if you want to ignore them for now. You can reset back to the default behaviour by using the following in your own `.eslint.js` - ```js rules: { 'no-use-before-define': 'off'