From e3c33a565d39582a5d2b9d03a413610fa37c3054 Mon Sep 17 00:00:00 2001 From: blitz-1306 Date: Wed, 3 Jan 2024 11:55:45 +0500 Subject: [PATCH] Tweak coverage settings to skip value parser files --- .c8rc.json | 4 +++- .vscode/settings.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.c8rc.json b/.c8rc.json index 7e52d6b..d71b9c8 100644 --- a/.c8rc.json +++ b/.c8rc.json @@ -6,8 +6,10 @@ "**/test/**", "**/coverage/**", "**/.compiler_cache/**", + "**/scripts/**", "src/bin/cli.ts", - "scripts/gen_preamble.ts" + "src/lib/souffle/value_header.ts", + "src/lib/souffle/value_parser.ts" ], "reporter": ["lcov", "text-summary"], "all": true, diff --git a/.vscode/settings.json b/.vscode/settings.json index ca8194d..7d09175 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -20,6 +20,6 @@ "eslint.enable": true, "eslint.validate": ["javascript", "typescript"], "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" } }