From 12a56cdfe0ac6875cc992167079e8215ce476df7 Mon Sep 17 00:00:00 2001 From: Ben Lambert Date: Fri, 22 Jan 2021 16:05:02 +0100 Subject: [PATCH] Create clean-rocks-ring.md --- .changeset/clean-rocks-ring.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .changeset/clean-rocks-ring.md diff --git a/.changeset/clean-rocks-ring.md b/.changeset/clean-rocks-ring.md new file mode 100644 index 0000000000..94327c2ffe --- /dev/null +++ b/.changeset/clean-rocks-ring.md @@ -0,0 +1,19 @@ +--- +"@backstage/cli": minor +--- + +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' +} +``` + +Because of the nature of this change, we're unable to provide a grace period for the update :(