From 50a9020d00e04a1e31f02c0e76eb21371e14d85f Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Mon, 13 May 2024 18:41:33 -0400 Subject: [PATCH] reorder eslint ignores --- eslint.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index c4f7573c5..c15c17e7d 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -43,10 +43,10 @@ export default [ 'documentation', // contains a fork of the REPL which doesn't adhere to eslint rules 'sites/svelte-5-preview/**', - // wasn't checked previously, reenable at some point - 'sites/svelte.dev/**', 'playgrounds/demo/src/**', - 'tmp/**' + 'tmp/**', + // wasn't checked previously, reenable at some point + 'sites/svelte.dev/**' ] } ];