Just ignore the foundation syntax check now 44/4344/1
authortrevor tao <trevor.tao@arm.com>
Mon, 14 Jun 2021 13:51:19 +0000 (21:51 +0800)
committertrevor tao <trevor.tao@arm.com>
Mon, 14 Jun 2021 13:52:44 +0000 (21:52 +0800)
Now the Akraino builder system reports some unexpected
errors when do the code check, so we just ignore it
for the foundation part temporarily.

Change-Id: Ifc7de399b33590964972fa34eb8823e23554879e
Signed-off-by: trevor tao <trevor.tao@arm.com>
.coafile

index a9dae48..5191c49 100644 (file)
--- a/.coafile
+++ b/.coafile
@@ -21,14 +21,16 @@ files = docs/**.rst
 use_spaces = true
 ignore = .git/**,
     .tox/**,
-    src/type3_AndroidCloud/**
+    src/type3_AndroidCloud/**,
+    src/foundation/**
 
 [all.ShellCheck]
 bears = ShellCheckBear,SpaceConsistencyBear
 files = **.sh
 shell = bash
 use_spaces = true
-ignore = src/type3_AndroidCloud/**
+ignore = src/type3_AndroidCloud/**,
+    src/foundation/**
 
 [all.YAML]
 bears = YAMLLintBear
@@ -37,7 +39,9 @@ use_spaces = true
 ignore_length_regex = ^.*https?://
 yamllint_config = .yamllint.conf
 ignore = src/use_cases/**,
-    src/type3_AndroidCloud/**
+    src/type3_AndroidCloud/**,
+    src/foundation/**
+
 
 [all.Python]
 bears = PyLintBear
@@ -45,4 +49,5 @@ files = **.py
 use_spaces = true
 pylint_disable = E0401, W0401, C0111
 ignore = src/use_cases/**,
-    src/type3_AndroidCloud/**
+    src/type3_AndroidCloud/**,
+    src/foundation/**