The following issues were found
coq/snippets/consts.py
1 issues
Line: 1
Column: 1
MOD_PAD = 1000
Reported by Pylint.
coq/databases/tmux/sql/insert/word.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO words ( pane_id, word, lword)
VALUES (:pane_id, :word, LOWER(:word))
Reported by SQLint.
coq/databases/snippets/sql/insert/snippet.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO snippets ( rowid, filetype, grammar, content, label, doc)
VALUES (:rowid, :filetype, :grammar, :content, :label, :doc)
Reported by SQLint.
coq/databases/tmux/sql/insert/pane.sql
1 issues
Line: 1
Column: 8
INSERT OR IGNORE INTO panes ( pane_id)
VALUES (:pane_id)
Reported by SQLint.
coq/databases/tmux/sql/create/tables.sql
1 issues
Line: 6
Column: 11
CREATE TABLE IF NOT EXISTS panes (
pane_id TEXT NOT NULL PRIMARY KEY
) WITHOUT ROWID;
CREATE TABLE IF NOT EXISTS words (
pane_id TEXT NOT NULL REFERENCES panes (pane_id) ON UPDATE CASCADE ON DELETE CASCADE,
word TEXT NOT NULL,
Reported by SQLint.
coq/clients/cache/sql/create/pragma.sql
1 issues
Line: 1
Column: 1
PRAGMA foreign_keys = ON;
Reported by SQLint.
coq/clients/cache/sql/__init__.py
1 issues
Line: 6
Column: 1
"""
from pathlib import Path
from ....shared.sql import loader
sql = loader(Path(__file__).resolve().parent)
Reported by Pylint.