From 645b35a62d7f32bb255dbf682e098308d2195f58 Mon Sep 17 00:00:00 2001 From: thomas-senechal Date: Tue, 29 Oct 2024 15:12:22 +0100 Subject: [PATCH] Fix lint --- cli/.prettierignore | 2 ++ cli/eslint.config.mjs | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 cli/.prettierignore diff --git a/cli/.prettierignore b/cli/.prettierignore new file mode 100644 index 0000000..2497ca6 --- /dev/null +++ b/cli/.prettierignore @@ -0,0 +1,2 @@ +# Contains the bytecode of the SC +src/lib/website/sc/deweb-sc-bytecode.ts \ No newline at end of file diff --git a/cli/eslint.config.mjs b/cli/eslint.config.mjs index 8989fe7..43151ed 100644 --- a/cli/eslint.config.mjs +++ b/cli/eslint.config.mjs @@ -14,7 +14,13 @@ const compat = new FlatCompat({ export default [ { - ignores: ['**/bin', '**/node_modules', '**/scripts', 'jest.config.ts'], + ignores: [ + '**/bin', + '**/node_modules', + '**/scripts', + 'jest.config.ts', + 'src/lib/website/sc/deweb-sc-bytecode.ts', + ], }, ...compat.extends('@massalabs', 'prettier'), {