Validate URLs using Jenkins env variable
[releng/global-jjb.git] / .coafile
index 340ef8b..4c0ea04 100644 (file)
--- a/.coafile
+++ b/.coafile
@@ -6,17 +6,35 @@ ignore_length_regex = Signed-off-by,
     http://,
     https://
 
-[YAML]
-bears = YAMLLintBear
-files = **/*.yaml
-ignore = .*/**
-document_start = True
-yamllint_config = yamllint.conf
+[Groovy]
+bears = SpaceConsistencyBear
+files = **/*.groovy
+ignore = .git/**,
+    .tox/**
+indent_size = 4
+use_spaces = true
+
+[MarkDown]
+bears = MarkdownBear,SpaceConsistencyBear,WriteGoodLintBear
+files = **/*.md, **/*.markdown
+ignore = .git/**,
+    .tox/**
+use_spaces = true
 
 [ShellCheck]
 bears = ShellCheckBear,SpaceConsistencyBear
 files = **/*.sh
-ignore = .*/**
+ignore = .git/**,
+    .tox/**
 shell = bash
 indent_size = 4
 use_spaces = yeah
+
+[YAML]
+bears = YAMLLintBear
+files = **/*.yaml
+ignore = .git/**,
+    .tox/**
+document_start = True
+yamllint_config = yamllint.conf
+