Add a http performance test script based on wrk
[iec.git] / .coafile
1 [all]
2 ignore = .tox/**,
3     .git/**,
4     .gitignore,
5     .gitreview,
6     .gitmodules,
7     **.sw?,
8     **.orig
9
10 [all.GitCommit]
11 bears = GitCommitBear
12 ignore_length_regex = Signed-off-by,
13     Also-by,
14     Co-authored-by,
15     http://,
16     https://
17
18 [all.reStructuredText]
19 bears = SpaceConsistencyBear
20 files = docs/**.rst
21 use_spaces = true
22 ignore = .git/**,
23     .tox/**,
24     src/type3_AndroidCloud/**,
25     src/foundation/**
26
27 [all.ShellCheck]
28 bears = ShellCheckBear,SpaceConsistencyBear
29 files = **.sh
30 shell = bash
31 use_spaces = true
32 ignore = src/type3_AndroidCloud/**,
33     src/foundation/**
34
35 [all.YAML]
36 bears = YAMLLintBear
37 files = **.yaml, **.yml
38 use_spaces = true
39 ignore_length_regex = ^.*https?://
40 yamllint_config = .yamllint.conf
41 ignore = src/use_cases/**,
42     src/type3_AndroidCloud/**,
43     src/foundation/**
44
45
46 [all.Python]
47 bears = PyLintBear
48 files = **.py
49 use_spaces = true
50 pylint_disable = E0401, W0401, C0111
51 ignore = src/use_cases/**,
52     src/type3_AndroidCloud/**,
53     src/foundation/**