##// END OF EJS Templates
pytype: introduce configuration for running pytype...
Mads Kiilerich -
r8638:278cc593 default
parent child Browse files
Show More
@@ -0,0 +1,10 b''
1 # Note: pytype currently only supports Python3.8
2 pytype == 2021.1.8
3 # optional modules that we want for pytype checking
4 appenlight_client
5 ipython
6 kajiki
7 psycopg2
8 python-ldap
9 python-pam
10 tgext.debugbar
@@ -1,58 +1,59 b''
1 syntax: glob
1 syntax: glob
2 *.pyc
2 *.pyc
3 *.swp
3 *.swp
4 *.sqlite
4 *.sqlite
5 *.tox
5 *.tox
6 *.egg-info
6 *.egg-info
7 *.egg
7 *.egg
8 *.mo
8 *.mo
9 *.orig
9 *.orig
10 *.rej
10 *.rej
11 *.bak
11 *.bak
12 .eggs/
12 .eggs/
13
13
14 syntax: regexp
14 syntax: regexp
15 ^extensions\.py$
15 ^extensions\.py$
16 ^build$
16 ^build$
17 ^dist$
17 ^dist$
18 ^docs/build$
18 ^docs/build$
19 ^docs/_build$
19 ^docs/_build$
20 ^data$
20 ^data$
21 ^sql_dumps$
21 ^sql_dumps$
22 ^\.settings$
22 ^\.settings$
23 ^\.project$
23 ^\.project$
24 ^\.pydevproject$
24 ^\.pydevproject$
25 ^\.coverage$
25 ^\.coverage$
26 ^kallithea/front-end/node_modules$
26 ^kallithea/front-end/node_modules$
27 ^kallithea/front-end/package-lock\.json$
27 ^kallithea/front-end/package-lock\.json$
28 ^kallithea/front-end/theme\.less$
28 ^kallithea/front-end/theme\.less$
29 ^kallithea/front-end/tmp$
29 ^kallithea/front-end/tmp$
30 ^kallithea/public/codemirror$
30 ^kallithea/public/codemirror$
31 ^kallithea/public/css/select2-spinner\.gif$
31 ^kallithea/public/css/select2-spinner\.gif$
32 ^kallithea/public/css/select2\.png$
32 ^kallithea/public/css/select2\.png$
33 ^kallithea/public/css/select2x2\.png$
33 ^kallithea/public/css/select2x2\.png$
34 ^kallithea/public/css/style\.css$
34 ^kallithea/public/css/style\.css$
35 ^kallithea/public/css/style\.css\.map$
35 ^kallithea/public/css/style\.css\.map$
36 ^kallithea/public/js/bootstrap\.js$
36 ^kallithea/public/js/bootstrap\.js$
37 ^kallithea/public/js/dataTables\.bootstrap\.js$
37 ^kallithea/public/js/dataTables\.bootstrap\.js$
38 ^kallithea/public/js/jquery\.atwho\.min\.js$
38 ^kallithea/public/js/jquery\.atwho\.min\.js$
39 ^kallithea/public/js/jquery\.caret\.min\.js$
39 ^kallithea/public/js/jquery\.caret\.min\.js$
40 ^kallithea/public/js/jquery\.dataTables\.js$
40 ^kallithea/public/js/jquery\.dataTables\.js$
41 ^kallithea/public/js/jquery\.flot\.js$
41 ^kallithea/public/js/jquery\.flot\.js$
42 ^kallithea/public/js/jquery\.flot\.selection\.js$
42 ^kallithea/public/js/jquery\.flot\.selection\.js$
43 ^kallithea/public/js/jquery\.flot\.time\.js$
43 ^kallithea/public/js/jquery\.flot\.time\.js$
44 ^kallithea/public/js/jquery\.min\.js$
44 ^kallithea/public/js/jquery\.min\.js$
45 ^kallithea/public/js/select2\.js$
45 ^kallithea/public/js/select2\.js$
46 ^kallithea\.db$
46 ^kallithea\.db$
47 ^test\.db$
47 ^test\.db$
48 ^Kallithea\.egg-info$
48 ^Kallithea\.egg-info$
49 ^my\.ini$
49 ^my\.ini$
50 ^fabfile\.py$
50 ^fabfile\.py$
51 ^\.idea$
51 ^\.idea$
52 ^\.cache$
52 ^\.cache$
53 ^\.pytest_cache$
53 ^\.pytest_cache$
54 ^venv$
54 ^venv$
55 /__pycache__$
55 /__pycache__$
56 ^deps\.dot$
56 ^deps\.dot$
57 ^deps\.svg$
57 ^deps\.svg$
58 ^deps\.txt$
58 ^deps\.txt$
59 ^\.pytype/
@@ -1,37 +1,48 b''
1 [egg_info]
1 [egg_info]
2 tag_build =
2 tag_build =
3 tag_svn_revision = 0
3 tag_svn_revision = 0
4 tag_date = 0
4 tag_date = 0
5
5
6 [aliases]
6 [aliases]
7 test = pytest
7 test = pytest
8
8
9 [compile_catalog]
9 [compile_catalog]
10 domain = kallithea
10 domain = kallithea
11 directory = kallithea/i18n
11 directory = kallithea/i18n
12 statistics = true
12 statistics = true
13
13
14 [extract_messages]
14 [extract_messages]
15 add_comments = TRANSLATORS:
15 add_comments = TRANSLATORS:
16 output_file = kallithea/i18n/kallithea.pot
16 output_file = kallithea/i18n/kallithea.pot
17 msgid-bugs-address = translations@kallithea-scm.org
17 msgid-bugs-address = translations@kallithea-scm.org
18 copyright-holder = Various authors, licensing as GPLv3
18 copyright-holder = Various authors, licensing as GPLv3
19
19
20 [init_catalog]
20 [init_catalog]
21 domain = kallithea
21 domain = kallithea
22 input_file = kallithea/i18n/kallithea.pot
22 input_file = kallithea/i18n/kallithea.pot
23 output_dir = kallithea/i18n
23 output_dir = kallithea/i18n
24
24
25 [update_catalog]
25 [update_catalog]
26 domain = kallithea
26 domain = kallithea
27 input_file = kallithea/i18n/kallithea.pot
27 input_file = kallithea/i18n/kallithea.pot
28 output_dir = kallithea/i18n
28 output_dir = kallithea/i18n
29 previous = true
29 previous = true
30
30
31 [build_sphinx]
31 [build_sphinx]
32 source-dir = docs/
32 source-dir = docs/
33 build-dir = docs/_build
33 build-dir = docs/_build
34 all_files = 1
34 all_files = 1
35
35
36 [upload_sphinx]
36 [upload_sphinx]
37 upload-dir = docs/_build/html
37 upload-dir = docs/_build/html
38
39 [pytype]
40 inputs =
41 kallithea
42 setup.py
43 exclude =
44 **/test_*.py
45 disable =
46 pyi-error
47 keep_going = True
48 #jobs = 3
General Comments 0
You need to be logged in to leave comments. Login now