From 3ecdf8fceff55e1103a9f122be19a3f4af44375d Mon Sep 17 00:00:00 2001 From: Alysson Keysson <54484070+AlyssonMascarenhas@users.noreply.github.com> Date: Wed, 14 Dec 2022 10:18:26 -0300 Subject: [PATCH] chore: ignore .spec in codeclimate (#382) * chore: ignore .spec in codeclimate * chore: ignore .spec in codeclimate * chore: including new path * fix: climate Co-authored-by: Alysson Keysson Co-authored-by: Iury Nogueira --- .codeclimate.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 000000000..43a9f9105 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,18 @@ +exclude_patterns: + - "../src/test.ts" + - "../src/**/*.spec.ts" + - "../projects/**/*.spec.ts" + - "config/" + - "db/" + - "dist/" + - "features/" + - "**/node_modules/" + - "script/" + - "**/spec/" + - "**/test/" + - "**/tests/" + - "Tests/" + - "**/vendor/" + - "**/*_test.go" + - "**/*.d.ts" + - "**/*.spec.ts"