forked from terminusdb/terminusdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.lint_config.pl
More file actions
22 lines (18 loc) · 860 Bytes
/
Copy path.lint_config.pl
File metadata and controls
22 lines (18 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
% We have to find out about those
ignore_predicate("dateTimeStamp/11").
ignore_predicate("time/8").
ignore_predicate("dateTime/11").
% woql_compile/n predicates are not actually real. The linter
% mysteriously complains about them though, so we have to ignore them
% until we can figure out what actually causes this.
ignore_predicate("woql_compile/5").
ignore_predicate("woql_compile/3").
% These predicates come from rust. We need a better way to ignore those
ignore_predicate("get_document_context/2").
ignore_predicate("print_all_documents_json/8").
ignore_predicate("par_print_all_documents_json/8").
ignore_predicate("print_all_documents_json_by_type/9").
ignore_predicate("par_print_all_documents_json_by_type/9").
ignore_predicate("print_documents_json_by_id/9").
ignore_predicate("par_print_documents_json_by_id/9").
ignore_file("./src/library").