From 859808ef8d96ceec992fdbfa9e163844983ee2d4 Mon Sep 17 00:00:00 2001 From: GarboMuffin Date: Mon, 7 Aug 2023 20:37:25 -0500 Subject: [PATCH] Add Blockly and ScratchBlocks to ESLint globals (#850) --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 1ca8091ca7..7e9fd14fee 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,7 +10,9 @@ module.exports = { ecmaVersion: 'latest' }, globals: { + Blockly: 'readonly', Scratch: 'readonly', + ScratchBlocks: 'readonly', ScratchExtensions: 'readonly', scaffolding: 'readonly' },