The following issues were found
coq/consts.py
1 issues
Line: 1
Column: 1
from os import environ, name
from pathlib import Path
TOP_LEVEL = Path(__file__).resolve().parent.parent
REQUIREMENTS = TOP_LEVEL / "requirements.txt"
TIMEOUT = 1
VARS = TOP_LEVEL / ".vars"
Reported by Pylint.
coq/databases/snippets/sql/__init__.py
1 issues
Line: 7
Column: 1
from pathlib import Path
from ....shared.sql import loader
sql = loader(Path(__file__).resolve().parent)
Reported by Pylint.
coq/databases/snippets/sql/create/pragma.sql
1 issues
Line: 1
Column: 1
PRAGMA foreign_keys = ON;
Reported by SQLint.
coq/databases/snippets/sql/insert/option.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO options ( snippet_id, option)
VALUES (:snippet_id, :option)
Reported by SQLint.
coq/databases/snippets/sql/insert/extension.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO extensions ( src, dest)
VALUES (:src, :dest)
Reported by SQLint.
coq/databases/snippets/sql/insert/filetype.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO filetypes ( filetype)
VALUES (:filetype)
Reported by SQLint.
coq/databases/treesitter/sql/insert/word.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO words ( word, lword, kind)
VALUES (:word, LOWER(:word), :kind)
Reported by SQLint.
coq/clients/cache/sql/insert/word.sql
1 issues
Line: 1
Column: 8
INSERT OR REPLACE INTO words ( word, lword)
VALUES (:word, LOWER(:word))
Reported by SQLint.
coq/clients/cache/sql/create/tables.sql
1 issues
Line: 7
Column: 11
CREATE TABLE IF NOT EXISTS words (
word TEXT NOT NULL PRIMARY KEY,
lword TEXT NOT NULL
) WITHOUT ROWID;
CREATE INDEX IF NOT EXISTS words_lword ON words (lword);
END;
Reported by SQLint.
coq/databases/treesitter/sql/create/pragma.sql
1 issues
Line: 1
Column: 1
PRAGMA foreign_keys = ON;
Reported by SQLint.