From f98af0295e80743c798fcb9339cc905fc04d67d9 Mon Sep 17 00:00:00 2001 From: michael hohn Date: Mon, 20 Oct 2025 13:28:53 -0700 Subject: [PATCH] tested simple pull extractor. fail. --- bin/sarif-make-schema | 43 +- bin/sarif-pull | 123 +- .../sqlidb-0.sarif | 249 +- .../sqlidb-1.sarif | 222 +- .../sqlidb-v2.12.7-1.sarif | 258 +- .../sqlidb-v2.13.5-1.sarif | 312 +- .../sqlidb-v2.14.0-1.sarif | 312 +- .../sqlidb-v2.9.4-1.sarif | 258 +- data/treeio/2021-12-09/results.sarif | 34880 +--------------- data/treeio/2022-02-25/results.sarif | 30788 +------------- data/treeio/test_set_1.sarif | 15467 +------ 11 files changed, 98 insertions(+), 82814 deletions(-) diff --git a/bin/sarif-make-schema b/bin/sarif-make-schema index f296d78..ca9a7dd 100755 --- a/bin/sarif-make-schema +++ b/bin/sarif-make-schema @@ -1,18 +1,15 @@ #!/usr/bin/env python3 -""" -Create SQLite schema for SARIF importer. -""" +"""Create SQLite schema for SARIF importer.""" import sqlite3, sys schemas = { -"runs": """CREATE TABLE IF NOT EXISTS runs ( +"runs": """CREATE TABLE IF NOT EXISTS runs( run_id TEXT PRIMARY KEY, timestamp TIMESTAMP, tool TEXT, version TEXT, - exit_code INTEGER -);""", -"results": """CREATE TABLE IF NOT EXISTS results ( + exit_code INTEGER);""", +"results": """CREATE TABLE IF NOT EXISTS results( run_id TEXT, rule_id TEXT, severity TEXT, @@ -22,18 +19,16 @@ schemas = { line_end INTEGER, column_start INTEGER, column_end INTEGER, - PRIMARY KEY (run_id, rule_id, file_path, line_start) -);""", -"alerts": """CREATE TABLE IF NOT EXISTS alerts ( + PRIMARY KEY(run_id,rule_id,file_path,line_start));""", +"alerts": """CREATE TABLE IF NOT EXISTS alerts( alert_id TEXT PRIMARY KEY, run_id TEXT, rule_id TEXT, kind TEXT, file_path TEXT, message TEXT, - severity TEXT -);""", -"referenced_source_regions": """CREATE TABLE IF NOT EXISTS referenced_source_regions ( + severity TEXT);""", +"referenced_source_regions": """CREATE TABLE IF NOT EXISTS referenced_source_regions( region_id TEXT PRIMARY KEY, result_id TEXT, file_path TEXT, @@ -42,22 +37,18 @@ schemas = { start_column INTEGER, end_column INTEGER, snippet TEXT, - source_hash TEXT -);""" + source_hash TEXT);""" } def main(): - if len(sys.argv) < 2: + if len(sys.argv)<2: print("Usage: sarif-make-schema dbfile") sys.exit(1) - db = sys.argv[1] - con = sqlite3.connect(db) - cur = con.cursor() - for name, sql in schemas.items(): - cur.executescript(sql) - con.commit() - con.close() - print(f"Created/verified schema in {db}") + db=sys.argv[1] + con=sqlite3.connect(db) + cur=con.cursor() + for sql in schemas.values(): cur.executescript(sql) + con.commit(); con.close() + print(f"Schema ready in {db}") -if __name__ == "__main__": - main() +if __name__=="__main__": main() diff --git a/bin/sarif-pull b/bin/sarif-pull index a2888e6..8393387 100755 --- a/bin/sarif-pull +++ b/bin/sarif-pull @@ -1,84 +1,69 @@ #!/usr/bin/env python3 """ -Pull-style SARIF to SQLite converter. -Example: sarif-pull foo.sarif foo.db +Pull-style SARIF → SQLite importer. +Populates runs, results, alerts, referenced_source_regions. """ -import sqlite3, sys, os, uuid - -import json, fnmatch, hashlib, datetime - -def load_json(path): - with open(path, 'r', encoding='utf-8') as f: - return json.load(f) - -def flatten_json(obj, prefix="", sep="/"): - """Yield (path, value) pairs from nested dicts/lists.""" - if isinstance(obj, dict): - for k, v in obj.items(): - yield from flatten_json(v, f"{prefix}{sep}{k}" if prefix else k, sep) - elif isinstance(obj, list): - for i, v in enumerate(obj): - yield from flatten_json(v, f"{prefix}{sep}{i}" if prefix else str(i), sep) - else: - yield prefix, obj - -def hash_snippet(text): - return hashlib.sha1(text.encode('utf-8', 'ignore')).hexdigest() - -def now_timestamp(): - return datetime.datetime.utcnow().isoformat(sep=' ', timespec='seconds') - +import sqlite3, sys, os +from sarif_util import load_json, hash_snippet, now_timestamp +import subprocess def ensure_schema(db): - import subprocess subprocess.run(["sarif-make-schema", db], check=True) -def extract_results(run_id, run): - results = [] - tool = run.get("tool", {}).get("driver", {}).get("name", "") - version = run.get("tool", {}).get("driver", {}).get("semanticVersion", "") - for res in run.get("results", []) or []: - msg = (res.get("message") or {}).get("text", "") - rule_id = res.get("ruleId", "") - sev = (res.get("properties") or {}).get("problem.severity", "") - locs = res.get("locations") or [] +def extract_all(run_id, run): + results, alerts, regions = [], [], [] + tool = run.get("tool",{}).get("driver",{}).get("name","") + version = run.get("tool",{}).get("driver",{}).get("semanticVersion","") + for res in run.get("results",[]) or []: + msg=(res.get("message") or {}).get("text","") + rule_id=res.get("ruleId","") + sev=(res.get("properties") or {}).get("problem.severity","") + locs=res.get("locations") or [] for loc in locs: - ploc = loc.get("physicalLocation", {}) if loc else {} - file_path = (ploc.get("artifactLocation") or {}).get("uri", "") - region = ploc.get("region") or {} - results.append({ - "run_id": run_id, - "rule_id": rule_id, - "severity": sev, - "message": msg, - "file_path": file_path, - "line_start": region.get("startLine"), - "line_end": region.get("endLine"), - "column_start": region.get("startColumn"), - "column_end": region.get("endColumn"), - }) - return results, tool, version + ploc=loc.get("physicalLocation",{}) if loc else {} + file_path=(ploc.get("artifactLocation") or {}).get("uri","") + region=ploc.get("region") or {} + ls,le,cs,ce=(region.get("startLine"),region.get("endLine"), + region.get("startColumn"),region.get("endColumn")) + rid=hash_snippet(f"{run_id}|{rule_id}|{file_path}|{ls}|{le}|{cs}|{ce}") + results.append(dict(run_id=run_id,rule_id=rule_id,severity=sev, + message=msg,file_path=file_path, + line_start=ls,line_end=le, + column_start=cs,column_end=ce)) + alerts.append(dict(alert_id=rid,run_id=run_id,rule_id=rule_id, + kind="result",file_path=file_path, + message=msg,severity=sev)) + regions.append(dict(region_id=hash_snippet(f"{file_path}|{ls}|{le}|{cs}|{ce}"), + result_id=rid,file_path=file_path, + start_line=ls,end_line=le, + start_column=cs,end_column=ce, + snippet=None,source_hash=None)) + return results, alerts, regions, tool, version def main(): - if len(sys.argv) < 3: + if len(sys.argv)<3: print("Usage: sarif-pull input.sarif output.db") sys.exit(1) - sarif_file, dbfile = sys.argv[1], sys.argv[2] + sarif_file,dbfile=sys.argv[1:3] ensure_schema(dbfile) - sarif = load_json(sarif_file) - con = sqlite3.connect(dbfile) - cur = con.cursor() - for i, run in enumerate(sarif.get("runs", [])): - run_id = f"{os.path.basename(sarif_file)}#{i}" - results, tool, version = extract_results(run_id, run) - cur.execute("INSERT OR REPLACE INTO runs VALUES (?, ?, ?, ?, ?)", - (run_id, now_timestamp(), tool, version, 0)) + sarif=load_json(sarif_file) + con=sqlite3.connect(dbfile) + cur=con.cursor() + for i,run in enumerate(sarif.get("runs",[])): + run_id=f"{os.path.basename(sarif_file)}#{i}" + results,alerts,regions,tool,version=extract_all(run_id,run) + cur.execute("INSERT OR REPLACE INTO runs VALUES (?,?,?,?,?)", + (run_id,now_timestamp(),tool,version,0)) cur.executemany("""INSERT OR REPLACE INTO results VALUES - (:run_id, :rule_id, :severity, :message, :file_path, - :line_start, :line_end, :column_start, :column_end)""", results) - con.commit() - con.close() - print(f"Inserted {len(results)} results into {dbfile}") + (:run_id,:rule_id,:severity,:message,:file_path, + :line_start,:line_end,:column_start,:column_end)""",results) + cur.executemany("""INSERT OR REPLACE INTO alerts VALUES + (:alert_id,:run_id,:rule_id,:kind,:file_path,:message,:severity)""",alerts) + cur.executemany("""INSERT OR REPLACE INTO referenced_source_regions VALUES + (:region_id,:result_id,:file_path,:start_line,:end_line, + :start_column,:end_column,:snippet,:source_hash)""",regions) + con.commit(); con.close() + print(f"Inserted {len(results)} results, {len(alerts)} alerts, " + f"{len(regions)} regions into {dbfile}") -if __name__ == "__main__": - main() +if __name__=="__main__": main() diff --git a/data/codeql-dataflow-sql-injection/sqlidb-0.sarif b/data/codeql-dataflow-sql-injection/sqlidb-0.sarif index 47053af..c487de5 100644 --- a/data/codeql-dataflow-sql-injection/sqlidb-0.sarif +++ b/data/codeql-dataflow-sql-injection/sqlidb-0.sarif @@ -1,246 +1,3 @@ -{ - "$schema": "https://json.schemastore.org/sarif-2.1.0.json", - "version": "2.1.0", - "runs": [ - { - "tool": { - "driver": { - "name": "CodeQL", - "organization": "GitHub", - "semanticVersion": "2.9.4", - "rules": [ - { - "id": "cpp/SQLIVulnerable", - "name": "cpp/SQLIVulnerable", - "shortDescription": { - "text": "SQLI Vulnerability" - }, - "fullDescription": { - "text": "Using untrusted strings in a sql query allows sql injection attacks." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "description": "Using untrusted strings in a sql query allows sql injection attacks.", - "id": "cpp/SQLIVulnerable", - "kind": "path-problem", - "name": "SQLI Vulnerability", - "problem.severity": "warning" - } - } - ] - }, - "extensions": [ - { - "name": "legacy-upgrades", - "semanticVersion": "0.0.0", - "locations": [ - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.9.4/legacy-upgrades/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.9.4/legacy-upgrades/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - }, - { - "name": "sample/cpp-sql-injection", - "semanticVersion": "0.0.1", - "locations": [ - { - "uri": "file:///Users/hohn/local/sarif-cli/data/codeql-dataflow-sql-injection/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/local/sarif-cli/data/codeql-dataflow-sql-injection/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - } - ] - }, - "artifacts": [ - { - "location": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - ], - "results": [ - { - "ruleId": "cpp/SQLIVulnerable", - "ruleIndex": 0, - "rule": { - "id": "cpp/SQLIVulnerable", - "index": 0 - }, - "message": { - "text": "Possible SQL injection" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9a8bc91bbc363391:1", - "primaryLocationStartColumnFingerprint": "22" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 52, - "startColumn": 32, - "endColumn": 35 - } - }, - "message": { - "text": "ref arg buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 60, - "startColumn": 12, - "endColumn": 15 - } - }, - "message": { - "text": "buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 93, - "startColumn": 12, - "endColumn": 25 - } - }, - "message": { - "text": "call to get_user_info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 95, - "startColumn": 20, - "endColumn": 24 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 68, - "startColumn": 31, - "endColumn": 35 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - }, - "message": { - "text": "query" - } - } - } - ] - } - ] - } - ] - } - ], - "columnKind": "utf16CodeUnits", - "properties": { - "semmle.formatSpecifier": "sarif-latest" - } - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:7b71fd896c91254073c0e52d189a30fc97b5fdaa760d4ca5d9b70049aa15afd9 +size 8098 diff --git a/data/codeql-dataflow-sql-injection/sqlidb-1.sarif b/data/codeql-dataflow-sql-injection/sqlidb-1.sarif index 1e9d02c..dd6bcb6 100644 --- a/data/codeql-dataflow-sql-injection/sqlidb-1.sarif +++ b/data/codeql-dataflow-sql-injection/sqlidb-1.sarif @@ -1,219 +1,3 @@ -{ - "$schema" : "https://json.schemastore.org/sarif-2.1.0.json", - "version" : "2.1.0", - "runs" : [ { - "tool" : { - "driver" : { - "name" : "CodeQL", - "organization" : "GitHub", - "semanticVersion" : "2.9.4", - "rules" : [ { - "id" : "cpp/SQLIVulnerable", - "name" : "cpp/SQLIVulnerable", - "shortDescription" : { - "text" : "SQLI Vulnerability" - }, - "fullDescription" : { - "text" : "Using untrusted strings in a sql query allows sql injection attacks." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "description" : "Using untrusted strings in a sql query allows sql injection attacks.", - "id" : "cpp/SQLIVulnerable", - "kind" : "path-problem", - "name" : "SQLI Vulnerability", - "problem.severity" : "warning" - } - } ] - }, - "extensions" : [ { - "name" : "legacy-upgrades", - "semanticVersion" : "0.0.0", - "locations" : [ { - "uri" : "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.9.4/legacy-upgrades/", - "description" : { - "text" : "The QL pack root directory." - } - }, { - "uri" : "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.9.4/legacy-upgrades/qlpack.yml", - "description" : { - "text" : "The QL pack definition file." - } - } ] - }, { - "name" : "sample/cpp-sql-injection", - "semanticVersion" : "0.0.1", - "locations" : [ { - "uri" : "file:///Users/hohn/local/sarif-cli/data/codeql-dataflow-sql-injection/", - "description" : { - "text" : "The QL pack root directory." - } - }, { - "uri" : "file:///Users/hohn/local/sarif-cli/data/codeql-dataflow-sql-injection/qlpack.yml", - "description" : { - "text" : "The QL pack definition file." - } - } ] - } ] - }, - "artifacts" : [ { - "location" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - } - } ], - "results" : [ { - "ruleId" : "cpp/SQLIVulnerable", - "ruleIndex" : 0, - "rule" : { - "id" : "cpp/SQLIVulnerable", - "index" : 0 - }, - "message" : { - "text" : "Possible SQL injection" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 84, - "startColumn" : 27, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9a8bc91bbc363391:1", - "primaryLocationStartColumnFingerprint" : "22" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 52, - "startColumn" : 32, - "endColumn" : 35 - } - }, - "message" : { - "text" : "ref arg buf" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 60, - "startColumn" : 12, - "endColumn" : 15 - } - }, - "message" : { - "text" : "buf" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 93, - "startColumn" : 12, - "endColumn" : 25 - } - }, - "message" : { - "text" : "call to get_user_info" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 95, - "startColumn" : 20, - "endColumn" : 24 - } - }, - "message" : { - "text" : "info" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 68, - "startColumn" : 31, - "endColumn" : 35 - } - }, - "message" : { - "text" : "info" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "add-user.c", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 84, - "startColumn" : 27, - "endColumn" : 32 - } - }, - "message" : { - "text" : "query" - } - } - } ] - } ] - } ] - } ], - "automationDetails" : { - "id" : "mast-issue" - }, - "columnKind" : "utf16CodeUnits", - "properties" : { - "semmle.formatSpecifier" : "sarif-latest" - } - } ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee2dbe821d9b9aede15ccb3757df5bea092daff96503421a65e2cfb6835b365 +size 6392 diff --git a/data/codeql-dataflow-sql-injection/sqlidb-v2.12.7-1.sarif b/data/codeql-dataflow-sql-injection/sqlidb-v2.12.7-1.sarif index bbb6a94..c65b8fe 100644 --- a/data/codeql-dataflow-sql-injection/sqlidb-v2.12.7-1.sarif +++ b/data/codeql-dataflow-sql-injection/sqlidb-v2.12.7-1.sarif @@ -1,255 +1,3 @@ -{ - "$schema": "https://json.schemastore.org/sarif-2.1.0.json", - "version": "2.1.0", - "runs": [ - { - "tool": { - "driver": { - "name": "CodeQL", - "organization": "GitHub", - "semanticVersion": "2.12.7", - "rules": [ - { - "id": "cpp/SQLIVulnerable", - "name": "cpp/SQLIVulnerable", - "shortDescription": { - "text": "SQLI Vulnerability" - }, - "fullDescription": { - "text": "Using untrusted strings in a sql query allows sql injection attacks." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "description": "Using untrusted strings in a sql query allows sql injection attacks.", - "id": "cpp/SQLIVulnerable", - "kind": "path-problem", - "name": "SQLI Vulnerability", - "problem.severity": "warning" - } - } - ] - }, - "extensions": [ - { - "name": "legacy-upgrades", - "semanticVersion": "0.0.0", - "locations": [ - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.12.7/legacy-upgrades/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.12.7/legacy-upgrades/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - }, - { - "name": "codeql-dataflow-sql-injection", - "semanticVersion": "0.0.1", - "locations": [ - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - } - ] - }, - "artifacts": [ - { - "location": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - ], - "results": [ - { - "ruleId": "cpp/SQLIVulnerable", - "ruleIndex": 0, - "rule": { - "id": "cpp/SQLIVulnerable", - "index": 0 - }, - "message": { - "text": "Possible SQL injection" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9a8bc91bbc363391:1", - "primaryLocationStartColumnFingerprint": "22" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 52, - "startColumn": 32, - "endColumn": 35 - } - }, - "message": { - "text": "ref arg buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 60, - "startColumn": 12, - "endColumn": 15 - } - }, - "message": { - "text": "buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 93, - "startColumn": 12, - "endColumn": 25 - } - }, - "message": { - "text": "call to get_user_info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 95, - "startColumn": 20, - "endColumn": 24 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 68, - "startColumn": 31, - "endColumn": 35 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - }, - "message": { - "text": "query" - } - } - } - ] - } - ] - } - ] - } - ], - "automationDetails": { - "id": "santa-chap/" - }, - "columnKind": "utf16CodeUnits", - "properties": { - "semmle.formatSpecifier": "sarif-latest" - }, - "versionControlProvenance": [ - { - "repositoryUri": "vcp-no-uri", - "revisionId": "vcp-no-revid" - } - ] - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:2f070d70274705db862df70d47b292100734e485beafa3604b7a0f030c615c2e +size 8307 diff --git a/data/codeql-dataflow-sql-injection/sqlidb-v2.13.5-1.sarif b/data/codeql-dataflow-sql-injection/sqlidb-v2.13.5-1.sarif index 9b3a99a..1cf5c2b 100644 --- a/data/codeql-dataflow-sql-injection/sqlidb-v2.13.5-1.sarif +++ b/data/codeql-dataflow-sql-injection/sqlidb-v2.13.5-1.sarif @@ -1,309 +1,3 @@ -{ - "$schema": "https://json.schemastore.org/sarif-2.1.0.json", - "version": "2.1.0", - "runs": [ - { - "tool": { - "driver": { - "name": "CodeQL", - "organization": "GitHub", - "semanticVersion": "2.13.5", - "notifications": [ - { - "id": "cpp/baseline/expected-extracted-files", - "name": "cpp/baseline/expected-extracted-files", - "shortDescription": { - "text": "Expected extracted files" - }, - "fullDescription": { - "text": "Files appearing in the source archive that are expected to be extracted." - }, - "defaultConfiguration": { - "enabled": true - }, - "properties": { - "tags": [ - "expected-extracted-files", - "telemetry" - ] - } - } - ], - "rules": [ - { - "id": "cpp/SQLIVulnerable", - "name": "cpp/SQLIVulnerable", - "shortDescription": { - "text": "SQLI Vulnerability" - }, - "fullDescription": { - "text": "Using untrusted strings in a sql query allows sql injection attacks." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "description": "Using untrusted strings in a sql query allows sql injection attacks.", - "id": "cpp/SQLIVulnerable", - "kind": "path-problem", - "name": "SQLI Vulnerability", - "problem.severity": "warning" - } - } - ] - }, - "extensions": [ - { - "name": "legacy-upgrades", - "semanticVersion": "0.0.0", - "locations": [ - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.13.5/legacy-upgrades/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.13.5/legacy-upgrades/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - }, - { - "name": "codeql-dataflow-sql-injection", - "semanticVersion": "0.0.1", - "locations": [ - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - } - ] - }, - "invocations": [ - { - "toolExecutionNotifications": [ - { - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - } - ], - "message": { - "text": "" - }, - "level": "none", - "descriptor": { - "id": "cpp/baseline/expected-extracted-files", - "index": 0 - }, - "properties": { - "formattedMessage": { - "text": "" - } - } - } - ], - "executionSuccessful": true - } - ], - "artifacts": [ - { - "location": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - ], - "results": [ - { - "ruleId": "cpp/SQLIVulnerable", - "ruleIndex": 0, - "rule": { - "id": "cpp/SQLIVulnerable", - "index": 0 - }, - "message": { - "text": "Possible SQL injection" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9a8bc91bbc363391:1", - "primaryLocationStartColumnFingerprint": "22" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 52, - "startColumn": 32, - "endColumn": 35 - } - }, - "message": { - "text": "ref arg buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 60, - "startColumn": 12, - "endColumn": 15 - } - }, - "message": { - "text": "buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 93, - "startColumn": 12, - "endColumn": 25 - } - }, - "message": { - "text": "call to get_user_info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 95, - "startColumn": 20, - "endColumn": 24 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 68, - "startColumn": 31, - "endColumn": 35 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - }, - "message": { - "text": "query" - } - } - } - ] - } - ] - } - ] - } - ], - "automationDetails": { - "id": "santa-chap/" - }, - "columnKind": "utf16CodeUnits", - "properties": { - "semmle.formatSpecifier": "sarif-latest" - }, - "versionControlProvenance": [ - { - "repositoryUri": "vcp-no-uri", - "revisionId": "vcp-no-revid" - } - ] - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:a32de31a957d39f6593011e89e146b9dae5585df8e4e2b6b4575b176d2f13096 +size 9884 diff --git a/data/codeql-dataflow-sql-injection/sqlidb-v2.14.0-1.sarif b/data/codeql-dataflow-sql-injection/sqlidb-v2.14.0-1.sarif index bf3dafe..5c8530d 100644 --- a/data/codeql-dataflow-sql-injection/sqlidb-v2.14.0-1.sarif +++ b/data/codeql-dataflow-sql-injection/sqlidb-v2.14.0-1.sarif @@ -1,309 +1,3 @@ -{ - "$schema": "https://json.schemastore.org/sarif-2.1.0.json", - "version": "2.1.0", - "runs": [ - { - "tool": { - "driver": { - "name": "CodeQL", - "organization": "GitHub", - "semanticVersion": "2.14.0", - "notifications": [ - { - "id": "cpp/baseline/expected-extracted-files", - "name": "cpp/baseline/expected-extracted-files", - "shortDescription": { - "text": "Expected extracted files" - }, - "fullDescription": { - "text": "Files appearing in the source archive that are expected to be extracted." - }, - "defaultConfiguration": { - "enabled": true - }, - "properties": { - "tags": [ - "expected-extracted-files", - "telemetry" - ] - } - } - ], - "rules": [ - { - "id": "cpp/SQLIVulnerable", - "name": "cpp/SQLIVulnerable", - "shortDescription": { - "text": "SQLI Vulnerability" - }, - "fullDescription": { - "text": "Using untrusted strings in a sql query allows sql injection attacks." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "description": "Using untrusted strings in a sql query allows sql injection attacks.", - "id": "cpp/SQLIVulnerable", - "kind": "path-problem", - "name": "SQLI Vulnerability", - "problem.severity": "warning" - } - } - ] - }, - "extensions": [ - { - "name": "legacy-upgrades", - "semanticVersion": "0.0.0", - "locations": [ - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.14.0/legacy-upgrades/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.14.0/legacy-upgrades/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - }, - { - "name": "codeql-dataflow-sql-injection", - "semanticVersion": "0.0.1", - "locations": [ - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - } - ] - }, - "invocations": [ - { - "toolExecutionNotifications": [ - { - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - } - ], - "message": { - "text": "" - }, - "level": "none", - "descriptor": { - "id": "cpp/baseline/expected-extracted-files", - "index": 0 - }, - "properties": { - "formattedMessage": { - "text": "" - } - } - } - ], - "executionSuccessful": true - } - ], - "artifacts": [ - { - "location": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - ], - "results": [ - { - "ruleId": "cpp/SQLIVulnerable", - "ruleIndex": 0, - "rule": { - "id": "cpp/SQLIVulnerable", - "index": 0 - }, - "message": { - "text": "Possible SQL injection" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9a8bc91bbc363391:1", - "primaryLocationStartColumnFingerprint": "22" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 52, - "startColumn": 32, - "endColumn": 35 - } - }, - "message": { - "text": "ref arg buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 60, - "startColumn": 12, - "endColumn": 15 - } - }, - "message": { - "text": "buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 93, - "startColumn": 12, - "endColumn": 25 - } - }, - "message": { - "text": "call to get_user_info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 95, - "startColumn": 20, - "endColumn": 24 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 68, - "startColumn": 31, - "endColumn": 35 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - }, - "message": { - "text": "query" - } - } - } - ] - } - ] - } - ] - } - ], - "automationDetails": { - "id": "santa-chap/" - }, - "columnKind": "utf16CodeUnits", - "properties": { - "semmle.formatSpecifier": "sarif-latest" - }, - "versionControlProvenance": [ - { - "repositoryUri": "vcp-no-uri", - "revisionId": "vcp-no-revid" - } - ] - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:90395abb9879329e50c11c172f0af4b83aa5e84f8fb0d5e8a8e17af672633f5b +size 9884 diff --git a/data/codeql-dataflow-sql-injection/sqlidb-v2.9.4-1.sarif b/data/codeql-dataflow-sql-injection/sqlidb-v2.9.4-1.sarif index 3cdbc7b..dc4bd6f 100644 --- a/data/codeql-dataflow-sql-injection/sqlidb-v2.9.4-1.sarif +++ b/data/codeql-dataflow-sql-injection/sqlidb-v2.9.4-1.sarif @@ -1,255 +1,3 @@ -{ - "$schema": "https://json.schemastore.org/sarif-2.1.0.json", - "version": "2.1.0", - "runs": [ - { - "tool": { - "driver": { - "name": "CodeQL", - "organization": "GitHub", - "semanticVersion": "2.9.4", - "rules": [ - { - "id": "cpp/SQLIVulnerable", - "name": "cpp/SQLIVulnerable", - "shortDescription": { - "text": "SQLI Vulnerability" - }, - "fullDescription": { - "text": "Using untrusted strings in a sql query allows sql injection attacks." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "description": "Using untrusted strings in a sql query allows sql injection attacks.", - "id": "cpp/SQLIVulnerable", - "kind": "path-problem", - "name": "SQLI Vulnerability", - "problem.severity": "warning" - } - } - ] - }, - "extensions": [ - { - "name": "legacy-upgrades", - "semanticVersion": "0.0.0", - "locations": [ - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.9.4/legacy-upgrades/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/.local/share/gh/extensions/gh-codeql/dist/release/v2.9.4/legacy-upgrades/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - }, - { - "name": "sample/cpp-sql-injection", - "semanticVersion": "0.0.1", - "locations": [ - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/", - "description": { - "text": "The QL pack root directory." - } - }, - { - "uri": "file:///Users/hohn/local/sarif-cli/codeql-dataflow-sql-injection/qlpack.yml", - "description": { - "text": "The QL pack definition file." - } - } - ] - } - ] - }, - "artifacts": [ - { - "location": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - } - ], - "results": [ - { - "ruleId": "cpp/SQLIVulnerable", - "ruleIndex": 0, - "rule": { - "id": "cpp/SQLIVulnerable", - "index": 0 - }, - "message": { - "text": "Possible SQL injection" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9a8bc91bbc363391:1", - "primaryLocationStartColumnFingerprint": "22" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 52, - "startColumn": 32, - "endColumn": 35 - } - }, - "message": { - "text": "ref arg buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 60, - "startColumn": 12, - "endColumn": 15 - } - }, - "message": { - "text": "buf" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 93, - "startColumn": 12, - "endColumn": 25 - } - }, - "message": { - "text": "call to get_user_info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 95, - "startColumn": 20, - "endColumn": 24 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 68, - "startColumn": 31, - "endColumn": 35 - } - }, - "message": { - "text": "info" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "add-user.c", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 84, - "startColumn": 27, - "endColumn": 32 - } - }, - "message": { - "text": "query" - } - } - } - ] - } - ] - } - ] - } - ], - "automationDetails": { - "id": "santa-chap/" - }, - "columnKind": "utf16CodeUnits", - "properties": { - "semmle.formatSpecifier": "sarif-latest" - }, - "versionControlProvenance": [ - { - "repositoryUri": "vcp-no-uri", - "revisionId": "vcp-no-revid" - } - ] - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd4cec53621d1813c4a63ecd3c6536e9f37f1c9511ee937c793f73d945deb8e +size 8299 diff --git a/data/treeio/2021-12-09/results.sarif b/data/treeio/2021-12-09/results.sarif index 6eec959..a31d93d 100644 --- a/data/treeio/2021-12-09/results.sarif +++ b/data/treeio/2021-12-09/results.sarif @@ -1,34877 +1,3 @@ -{ - "$schema" : "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json", - "version" : "2.1.0", - "runs" : [ { - "tool" : { - "driver" : { - "name" : "LGTM.com", - "organization" : "Semmle", - "version" : "1.29.0-SNAPSHOT", - "rules" : [ { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "name" : "com.lgtm/javascript-queries:js/unused-local-variable", - "shortDescription" : { - "text" : "Unused variable, import, function or class" - }, - "fullDescription" : { - "text" : "Unused variables, imports, functions or classes may be a symptom of a bug and should be examined carefully." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "name" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "shortDescription" : { - "text" : "Property access on null or undefined" - }, - "fullDescription" : { - "text" : "Trying to access a property of \"null\" or \"undefined\" will result in a runtime exception." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "correctness", "external/cwe/cwe-476" ], - "kind" : "problem", - "precision" : "high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "name" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "shortDescription" : { - "text" : "Duplicate character in character class" - }, - "fullDescription" : { - "text" : "If a character class in a regular expression contains the same character twice, this may indicate a bug." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "regular-expressions" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "name" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "shortDescription" : { - "text" : "Misleading indentation after control statement" - }, - "fullDescription" : { - "text" : "The body of a control statement should have appropriate indentation to clarify which statements it controls and which ones it does not control." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "statistical", "non-attributable", "external/cwe/cwe-483" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "name" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "shortDescription" : { - "text" : "Missing variable declaration" - }, - "fullDescription" : { - "text" : "If a variable is not declared as a local variable, it becomes a global variable by default, which may be unintentional and could lead to unexpected behavior." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "maintainability" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/misleading-indentation-of-dangling-else", - "name" : "com.lgtm/javascript-queries:js/misleading-indentation-of-dangling-else", - "shortDescription" : { - "text" : "Misleading indentation of dangling 'else'" - }, - "fullDescription" : { - "text" : "The 'else' clause of an 'if' statement should be aligned with the 'if' it belongs to." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "readability", "statistical", "non-attributable", "external/cwe/cwe-483" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "name" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "shortDescription" : { - "text" : "Conflicting function declarations" - }, - "fullDescription" : { - "text" : "If two functions with the same name are declared in the same scope, one of the declarations overrides the other without warning. This makes the code hard to read and maintain, and may even lead to platform-dependent behavior." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "name" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "shortDescription" : { - "text" : "Conflicting variable initialization" - }, - "fullDescription" : { - "text" : "If a variable is declared and initialized twice inside the same variable declaration statement, the second initialization immediately overwrites the first one." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "name" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "shortDescription" : { - "text" : "Comparison between inconvertible types" - }, - "fullDescription" : { - "text" : "An equality comparison between two values that cannot be meaningfully converted to the same type will always yield 'false', and an inequality comparison will always yield 'true'." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-570", "external/cwe/cwe-571" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "name" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "shortDescription" : { - "text" : "Semicolon insertion" - }, - "fullDescription" : { - "text" : "Code that uses automatic semicolon insertion inconsistently is hard to read and maintain." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "language-features", "statistical", "non-attributable" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "name" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "shortDescription" : { - "text" : "Superfluous trailing arguments" - }, - "fullDescription" : { - "text" : "A function is invoked with extra trailing arguments that are ignored." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "correctness", "language-features", "external/cwe/cwe-685" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "name" : "com.lgtm/javascript-queries:js/overwritten-property", - "shortDescription" : { - "text" : "Overwritten property" - }, - "fullDescription" : { - "text" : "If an object literal has two properties with the same name, the second property overwrites the first one, which makes the code hard to understand and error-prone." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "name" : "com.lgtm/javascript-queries:js/eval-like-call", - "shortDescription" : { - "text" : "Call to eval-like DOM function" - }, - "fullDescription" : { - "text" : "DOM functions that act like 'eval' and execute strings as code are dangerous and impede program analysis and understanding. Consequently, they should not be used." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "external/cwe/cwe-676" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/use-before-declaration", - "name" : "com.lgtm/javascript-queries:js/use-before-declaration", - "shortDescription" : { - "text" : "Variable not declared before use" - }, - "fullDescription" : { - "text" : "Variables should be declared before their first use." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "readability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "name" : "com.lgtm/javascript-queries:js/trivial-conditional", - "shortDescription" : { - "text" : "Useless conditional" - }, - "fullDescription" : { - "text" : "If a conditional expression always evaluates to true or always evaluates to false, this suggests incomplete code or a logic error." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "external/cwe/cwe-570", "external/cwe/cwe-571" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-expression", - "name" : "com.lgtm/javascript-queries:js/useless-expression", - "shortDescription" : { - "text" : "Expression has no effect" - }, - "fullDescription" : { - "text" : "An expression that has no effect and is used in a void context is most likely redundant and may indicate a bug." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "correctness", "external/cwe/cwe-480", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/redundant-operation", - "name" : "com.lgtm/javascript-queries:js/redundant-operation", - "shortDescription" : { - "text" : "Identical operands" - }, - "fullDescription" : { - "text" : "Passing identical, or seemingly identical, operands to an operator such as subtraction or conjunction may indicate a typo; even if it is intentional, it makes the code hard to read." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-480", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "name" : "com.lgtm/javascript-queries:js/unreachable-statement", - "shortDescription" : { - "text" : "Unreachable statement" - }, - "fullDescription" : { - "text" : "Unreachable statements are often indicative of missing code or latent bugs and should be avoided." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "correctness", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/redundant-assignment", - "name" : "com.lgtm/javascript-queries:js/redundant-assignment", - "shortDescription" : { - "text" : "Self assignment" - }, - "fullDescription" : { - "text" : "Assigning a variable to itself has no effect." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-480", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "name" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "shortDescription" : { - "text" : "Useless assignment to local variable" - }, - "fullDescription" : { - "text" : "An assignment to a local variable that is not used later on, or whose value is always overwritten, has no effect." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "name" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "shortDescription" : { - "text" : "Implicit operand conversion" - }, - "fullDescription" : { - "text" : "Relying on implicit conversion of operands is error-prone and makes code hard to read." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "readability", "external/cwe/cwe-704" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "name" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "shortDescription" : { - "text" : "Duplicate variable declaration" - }, - "fullDescription" : { - "text" : "A variable declaration statement that declares the same variable twice is confusing and hard to maintain." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "name" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "shortDescription" : { - "text" : "Potentially unsafe external link" - }, - "fullDescription" : { - "text" : "External links that open in a new tab or window but do not specify link type 'noopener' or 'noreferrer' are a potential security risk." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "security", "external/cwe/cwe-200", "external/cwe/cwe-1022" ], - "kind" : "problem", - "precision" : "very-high", - "security-severity" : "6.5", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "name" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "shortDescription" : { - "text" : "Duplicate HTML element attributes" - }, - "fullDescription" : { - "text" : "Specifying the same attribute twice on the same HTML element is redundant and may indicate a copy-paste mistake." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "readability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unknown-directive", - "name" : "com.lgtm/javascript-queries:js/unknown-directive", - "shortDescription" : { - "text" : "Unknown directive" - }, - "fullDescription" : { - "text" : "An unknown directive has no effect and may indicate a misspelling." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/redos", - "name" : "com.lgtm/javascript-queries:js/redos", - "shortDescription" : { - "text" : "Inefficient regular expression" - }, - "fullDescription" : { - "text" : "A regular expression that requires exponential time to match certain inputs can be a performance bottleneck, and may be vulnerable to denial-of-service attacks." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-1333", "external/cwe/cwe-730", "external/cwe/cwe-400" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.5", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "name" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "shortDescription" : { - "text" : "Incomplete string escaping or encoding" - }, - "fullDescription" : { - "text" : "A string transformer that does not replace or escape all occurrences of a meta-character may be ineffective." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-116", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "name" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "shortDescription" : { - "text" : "Useless assignment to property" - }, - "fullDescription" : { - "text" : "An assignment to a property whose value is always overwritten has no effect." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "name" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "shortDescription" : { - "text" : "Incomplete regular expression for hostnames" - }, - "fullDescription" : { - "text" : "Matching a URL or hostname against a regular expression that contains an unescaped dot as part of the hostname might match more hostnames than expected." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "name" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "shortDescription" : { - "text" : "Loop iteration skipped due to shifting" - }, - "fullDescription" : { - "text" : "Removing elements from an array while iterating over it can cause the loop to skip over some elements, unless the loop index is decremented accordingly." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "name" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "shortDescription" : { - "text" : "Useless regular-expression character escape" - }, - "fullDescription" : { - "text" : "Prepending a backslash to an ordinary character in a string does not have any effect, and may make regular expressions constructed from this string behave unexpectedly." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "name" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "shortDescription" : { - "text" : "Unsafe jQuery plugin" - }, - "fullDescription" : { - "text" : "A jQuery plugin that unintentionally constructs HTML from some of its options may be unsafe to use for clients." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-079", "external/cwe/cwe-116", "frameworks/jquery" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "6.1", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "name" : "com.lgtm/javascript-queries:js/xss-through-dom", - "shortDescription" : { - "text" : "DOM text reinterpreted as HTML" - }, - "fullDescription" : { - "text" : "Reinterpreting text from the DOM as HTML can lead to a cross-site scripting vulnerability." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-079", "external/cwe/cwe-116" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "6.1", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "name" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "shortDescription" : { - "text" : "Incomplete multi-character sanitization" - }, - "fullDescription" : { - "text" : "A sanitizer that removes a sequence of characters may reintroduce the dangerous sequence." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-116", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/html-constructed-from-input", - "name" : "com.lgtm/javascript-queries:js/html-constructed-from-input", - "shortDescription" : { - "text" : "Unsafe HTML constructed from library input" - }, - "fullDescription" : { - "text" : "Using externally controlled strings to construct HTML might allow a malicious user to perform a cross-site scripting attack." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-079", "external/cwe/cwe-116" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "6.1", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/bad-tag-filter", - "name" : "com.lgtm/javascript-queries:js/bad-tag-filter", - "shortDescription" : { - "text" : "Bad HTML filtering regexp" - }, - "fullDescription" : { - "text" : "Matching HTML tags using regular expressions is hard to do right, and can easily lead to security issues." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-116", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - } ] - } - }, - "versionControlProvenance" : [ { - "repositoryUri" : "https://github.com/treeio/treeio.git", - "revisionId" : "bae3115f4015aad2cbc5ab45572232ceec990495" - } ], - "artifacts" : [ { - "location" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - } - }, { - "location" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/accordion/hoverintent.html", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - } - }, { - "location" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/editable_selects.js", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - } - }, { - "location" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - } - }, { - "location" : { - "uri" : "templates/html/core/billing/upgrade.html", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - } - }, { - "location" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - } - }, { - "location" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/effect/easing.html", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - } - }, { - "location" : { - "uri" : "static/js/jquery.gritter.js", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - } - }, { - "location" : { - "uri" : "static/mobile/jquery.mobile.forms.ajaxform.js", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example1/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example2/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example3/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example4/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example5/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.resizable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.slider.js", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - } - }, { - "location" : { - "uri" : "templates/html/core/administration/settings_view.html", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - } - }, { - "location" : { - "uri" : "templates/html/core/database_setup.html", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - } - }, { - "location" : { - "uri" : "static/js/jquery.ba-serializeobject.js", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - } - } ], - "results" : [ { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable size." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1214, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e4aa64838c776437:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable file_uploader." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 847, - "startColumn" : 17, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2d69a7ff25c11755:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable file_uploader." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 869, - "startColumn" : 17, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2d69a7ff25c11755:2", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable target." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 932, - "startColumn" : 10, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f53acefb9d43eca1:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable args." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/accordion/hoverintent.html", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 33, - "startColumn" : 5, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c700eb701f79d0d0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable divchart." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 94, - "startColumn" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae729c9a998d74ca:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ArrayUtils." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 394, - "startColumn" : 9, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "141267900b8cd48b:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 119, - "startColumn" : 73, - "endColumn" : 74 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ff892574fa9e85eb:1", - "primaryLocationStartColumnFingerprint" : "70" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 292, - "startColumn" : 50, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f7867eeb9bf356b:1", - "primaryLocationStartColumnFingerprint" : "47" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 292, - "startColumn" : 53, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f7867eeb9bf356b:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable formObj." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 186, - "startColumn" : 6, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d0c61133d25c9f9:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable onClickData." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 187, - "startColumn" : 6, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "78c0f23e32d4f70a:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - }, - "region" : { - "startLine" : 12, - "startColumn" : 33, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "484d0f12e577c58e:1", - "primaryLocationStartColumnFingerprint" : "31" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable tableElm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - }, - "region" : { - "startLine" : 5, - "startColumn" : 7, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67fade4c71484886:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable nodes." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - }, - "region" : { - "startLine" : 53, - "startColumn" : 57, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "920d61c44c57d15d:1", - "primaryLocationStartColumnFingerprint" : "53" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable oed." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 42, - "startColumn" : 14, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dbb529ce80b3ce7f:1", - "primaryLocationStartColumnFingerprint" : "9" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable e." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 8, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ed." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 59, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "55" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ow." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 63, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "59" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable oh." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 67, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "63" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable po." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 45, - "startColumn" : 67, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ecd11012f8299dc9:1", - "primaryLocationStartColumnFingerprint" : "63" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable we." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 45, - "startColumn" : 81, - "endColumn" : 83 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ecd11012f8299dc9:1", - "primaryLocationStartColumnFingerprint" : "77" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable n." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 356, - "startColumn" : 11, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "37fd33b688fb439e:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sp." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 369, - "startColumn" : 78, - "endColumn" : 80 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1ce831038edb00ca:1", - "primaryLocationStartColumnFingerprint" : "74" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable dom." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - }, - "region" : { - "startLine" : 48, - "startColumn" : 9, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc9f7ffd8688f94d:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable found." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 86, - "startColumn" : 46, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c6736d1d2a732a1:1", - "primaryLocationStartColumnFingerprint" : "40" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable LIST_PARAGRAPH." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 147, - "startColumn" : 8, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "150e081cd6a801dd:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable mimeTypes." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 13, - "startColumn" : 55, - "endColumn" : 64 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "228c5616f3059e4b:1", - "primaryLocationStartColumnFingerprint" : "52" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable undef." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 36, - "startColumn" : 7, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f64d2aa9439670b5:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable baseUri." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 237, - "startColumn" : 43, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "116bc6f954a621d7:1", - "primaryLocationStartColumnFingerprint" : "39" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable iframe." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 333, - "startColumn" : 65, - "endColumn" : 71 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dfef88694be24fc:1", - "primaryLocationStartColumnFingerprint" : "61" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable params." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 334, - "startColumn" : 22, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa086219faff0715:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable item." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 334, - "startColumn" : 50, - "endColumn" : 54 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa086219faff0715:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable scale." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 438, - "startColumn" : 23, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7757018c26f91ee6:1", - "primaryLocationStartColumnFingerprint" : "19" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable size." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 438, - "startColumn" : 30, - "endColumn" : 34 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7757018c26f91ee6:1", - "primaryLocationStartColumnFingerprint" : "26" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable start." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 216, - "startColumn" : 10, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "84e36f7b13aa3825:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 54, - "startColumn" : 39, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a7e9ba6e835988d7:1", - "primaryLocationStartColumnFingerprint" : "35" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable elementId." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 54, - "startColumn" : 42, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a7e9ba6e835988d7:1", - "primaryLocationStartColumnFingerprint" : "38" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable wm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 41, - "startColumn" : 122, - "endColumn" : 124 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d662a2c9a98d47ba:1", - "primaryLocationStartColumnFingerprint" : "119" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 26, - "startColumn" : 18, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a4a5b32339264c:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ed." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 113, - "startColumn" : 21, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "422fc80096a3da42:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable b." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 159, - "startColumn" : 75, - "endColumn" : 76 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ef75af65bf5b1c78:1", - "primaryLocationStartColumnFingerprint" : "73" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 159, - "startColumn" : 78, - "endColumn" : 79 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ef75af65bf5b1c78:1", - "primaryLocationStartColumnFingerprint" : "76" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable num." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 445, - "startColumn" : 72, - "endColumn" : 75 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2d12ef6a2a5dde9d:1", - "primaryLocationStartColumnFingerprint" : "70" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 656, - "startColumn" : 39, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e65ddcb55e24d98:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable f." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - }, - "region" : { - "startLine" : 22, - "startColumn" : 15, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "778ea487f0bf76be:1", - "primaryLocationStartColumnFingerprint" : "10" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable newCell." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 257, - "startColumn" : 28, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3daaeb16d99d43a1:1", - "primaryLocationStartColumnFingerprint" : "22" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable pos." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 648, - "startColumn" : 8, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7105536cd5a32bd8:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable nativeSel." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 922, - "startColumn" : 50, - "endColumn" : 59 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d30633916718090:1", - "primaryLocationStartColumnFingerprint" : "44" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable inst." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 13, - "startColumn" : 6, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b275f430d62eff92:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable u." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 12, - "startColumn" : 47, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f0d8d29bfbda308f:1", - "primaryLocationStartColumnFingerprint" : "44" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable d." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 81, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bde41b602742921f:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable h." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 45, - "startColumn" : 40, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc336727502d4f1d:1", - "primaryLocationStartColumnFingerprint" : "36" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable d." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 45, - "startColumn" : 43, - "endColumn" : 44 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc336727502d4f1d:1", - "primaryLocationStartColumnFingerprint" : "39" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable bo." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 45, - "startColumn" : 100, - "endColumn" : 102 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc336727502d4f1d:1", - "primaryLocationStartColumnFingerprint" : "96" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable h." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 155, - "startColumn" : 82, - "endColumn" : 83 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d0c825a1c319a4a:1", - "primaryLocationStartColumnFingerprint" : "80" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable previewStylesName." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 16, - "startColumn" : 72, - "endColumn" : 89 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7cfb60bbc5a7b0f0:1", - "primaryLocationStartColumnFingerprint" : "69" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 473, - "startColumn" : 43, - "endColumn" : 45 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f45bfa37ee91587:1", - "primaryLocationStartColumnFingerprint" : "39" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable di." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 947, - "startColumn" : 83, - "endColumn" : 85 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e078421a122cd862:1", - "primaryLocationStartColumnFingerprint" : "79" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable r." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 986, - "startColumn" : 52, - "endColumn" : 53 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9734a17694d090c5:1", - "primaryLocationStartColumnFingerprint" : "48" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable mf." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 986, - "startColumn" : 55, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9734a17694d090c5:1", - "primaryLocationStartColumnFingerprint" : "51" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable me." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 986, - "startColumn" : 59, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9734a17694d090c5:1", - "primaryLocationStartColumnFingerprint" : "55" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable c." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1004, - "startColumn" : 61, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab531305754fa7d:1", - "primaryLocationStartColumnFingerprint" : "54" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable u." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1229, - "startColumn" : 41, - "endColumn" : 42 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "90dba1f2194b7e84:1", - "primaryLocationStartColumnFingerprint" : "35" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable action." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 5, - "startColumn" : 7, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "726aa09a4bdf5f87:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable tableElm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 282, - "startColumn" : 6, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b9dc3fd58f360963:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 60, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "58" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalCoef." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 63, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "61" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalR." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 74, - "endColumn" : 80 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "72" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalG." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 82, - "endColumn" : 88 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "80" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalB." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 90, - "endColumn" : 96 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "88" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 40, - "startColumn" : 50, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1cddd2b2a508e919:1", - "primaryLocationStartColumnFingerprint" : "47" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 40, - "startColumn" : 53, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1cddd2b2a508e919:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 104, - "startColumn" : 50, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d07e21efc99b239:1", - "primaryLocationStartColumnFingerprint" : "47" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 104, - "startColumn" : 53, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d07e21efc99b239:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable is." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 458, - "startColumn" : 6, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6370825d95c407c1:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable o." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 839, - "startColumn" : 18, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5e341e803b5de638:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable a." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 839, - "startColumn" : 21, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5e341e803b5de638:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable urlColorRegExp." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 2482, - "startColumn" : 3, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "65f651a406887e66:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable yl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3056, - "startColumn" : 24, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47219ab17e483228:1", - "primaryLocationStartColumnFingerprint" : "20" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable transElement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3057, - "startColumn" : 66, - "endColumn" : 78 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a72c6215d683c710:1", - "primaryLocationStartColumnFingerprint" : "61" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable childKey." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3057, - "startColumn" : 85, - "endColumn" : 93 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a72c6215d683c710:1", - "primaryLocationStartColumnFingerprint" : "80" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable childClone." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4064, - "startColumn" : 5, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b44810832feaa6d5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable textNode." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4364, - "startColumn" : 48, - "endColumn" : 56 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47d865239184dec2:1", - "primaryLocationStartColumnFingerprint" : "42" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable text." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4364, - "startColumn" : 68, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47d865239184dec2:1", - "primaryLocationStartColumnFingerprint" : "62" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sibling." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4364, - "startColumn" : 74, - "endColumn" : 81 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47d865239184dec2:1", - "primaryLocationStartColumnFingerprint" : "68" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable isFocusBlurBound." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5035, - "startColumn" : 40, - "endColumn" : 56 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "22b4364d3b7f9e73:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable simpleSelectorRe." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5483, - "startColumn" : 3, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7f70ef2a1842bebb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable globalStyle." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5507, - "startColumn" : 18, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "18283292f3721f6f:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable name." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5507, - "startColumn" : 31, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "18283292f3721f6f:1", - "primaryLocationStartColumnFingerprint" : "27" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable k." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5746, - "startColumn" : 12, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e08ca511dec23bac:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5808, - "startColumn" : 12, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "20cfa64043f7a50f:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6479, - "startColumn" : 27, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f76f7910d21195d1:1", - "primaryLocationStartColumnFingerprint" : "23" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable TRUE." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7570, - "startColumn" : 41, - "endColumn" : 45 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "843ddb3e8767106f:1", - "primaryLocationStartColumnFingerprint" : "38" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable fail." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7659, - "startColumn" : 116, - "endColumn" : 120 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f34e1916317c5a2:1", - "primaryLocationStartColumnFingerprint" : "112" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable start." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7809, - "startColumn" : 34, - "endColumn" : 39 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6769a6704a6f904a:1", - "primaryLocationStartColumnFingerprint" : "30" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable end." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7809, - "startColumn" : 41, - "endColumn" : 44 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6769a6704a6f904a:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused function trimNl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8152, - "startColumn" : 11, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5dae3f2561819bb8:1", - "primaryLocationStartColumnFingerprint" : "9" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable index." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8394, - "startColumn" : 72, - "endColumn" : 77 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e25fc82c9352326:1", - "primaryLocationStartColumnFingerprint" : "68" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable marker1." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8556, - "startColumn" : 31, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f3356aa3c538d585:1", - "primaryLocationStartColumnFingerprint" : "27" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable marker2." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8556, - "startColumn" : 40, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f3356aa3c538d585:1", - "primaryLocationStartColumnFingerprint" : "36" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable t." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8780, - "startColumn" : 8, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e5db827bec417dd:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sel." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8897, - "startColumn" : 36, - "endColumn" : 39 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "17394cfa1137d0b7:1", - "primaryLocationStartColumnFingerprint" : "32" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable node." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 9000, - "startColumn" : 49, - "endColumn" : 53 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "153254f1cd84f3f8:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sibling." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 9000, - "startColumn" : 55, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "153254f1cd84f3f8:1", - "primaryLocationStartColumnFingerprint" : "51" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable t." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 9609, - "startColumn" : 8, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "40defe4108d66b28:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable item." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 9711, - "startColumn" : 8, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4ada3ec73c9eb1bf:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable INVISIBLE_CHAR." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 9803, - "startColumn" : 7, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4919040cc4e575bc:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable controls." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10047, - "startColumn" : 19, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4575b23ca6b3d10f:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10295, - "startColumn" : 23, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "617cf6c61b9720d3:1", - "primaryLocationStartColumnFingerprint" : "21" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10295, - "startColumn" : 42, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "617cf6c61b9720d3:1", - "primaryLocationStartColumnFingerprint" : "40" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable walk." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10295, - "startColumn" : 63, - "endColumn" : 67 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "617cf6c61b9720d3:1", - "primaryLocationStartColumnFingerprint" : "61" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable is." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10326, - "startColumn" : 6, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "617cf6c61b9720d3:2", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10326, - "startColumn" : 42, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "617cf6c61b9720d3:2", - "primaryLocationStartColumnFingerprint" : "40" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable tb." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10491, - "startColumn" : 88, - "endColumn" : 90 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9064904ae031e70:1", - "primaryLocationStartColumnFingerprint" : "84" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable mi." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10568, - "startColumn" : 16, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e279893602e69e71:1", - "primaryLocationStartColumnFingerprint" : "10" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable e." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10707, - "startColumn" : 18, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5313dc864c5c7fc:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable Dispatcher." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11129, - "startColumn" : 73, - "endColumn" : 83 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ec8f0343bcf8c807:2", - "primaryLocationStartColumnFingerprint" : "71" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM_VK_LEFT." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11239, - "startColumn" : 13, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "526ca712cfda4d18:1", - "primaryLocationStartColumnFingerprint" : "8" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM_VK_RIGHT." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11239, - "startColumn" : 31, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "526ca712cfda4d18:1", - "primaryLocationStartColumnFingerprint" : "26" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11266, - "startColumn" : 52, - "endColumn" : 56 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dd29715c292961a2:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11359, - "startColumn" : 52, - "endColumn" : 56 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dd2c597ff7379913:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM_VK_SPACE." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11400, - "startColumn" : 10, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66c2ef4a1a0acd54:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM_VK_ENTER." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11400, - "startColumn" : 29, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66c2ef4a1a0acd54:1", - "primaryLocationStartColumnFingerprint" : "23" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM_VK_RETURN." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11400, - "startColumn" : 48, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66c2ef4a1a0acd54:1", - "primaryLocationStartColumnFingerprint" : "42" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM_VK_UP." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11400, - "startColumn" : 68, - "endColumn" : 77 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66c2ef4a1a0acd54:1", - "primaryLocationStartColumnFingerprint" : "62" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable r." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11465, - "startColumn" : 18, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3a2e7acd89d7cfbd:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable p." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11465, - "startColumn" : 21, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3a2e7acd89d7cfbd:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11714, - "startColumn" : 24, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6399a1e6aed005d9:1", - "primaryLocationStartColumnFingerprint" : "23" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11780, - "startColumn" : 44, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1659726357fce6df:1", - "primaryLocationStartColumnFingerprint" : "42" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ThemeManager." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11882, - "startColumn" : 3, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "324b94ac39a3889a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable PluginManager." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11882, - "startColumn" : 40, - "endColumn" : 53 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "324b94ac39a3889a:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable pl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11917, - "startColumn" : 18, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e83a6d6ab3ecf5f:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11917, - "startColumn" : 22, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e83a6d6ab3ecf5f:1", - "primaryLocationStartColumnFingerprint" : "18" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable e." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11917, - "startColumn" : 49, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e83a6d6ab3ecf5f:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable lo." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 12202, - "startColumn" : 8, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4ea911a6440830b:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable isWebKit." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 12234, - "startColumn" : 24, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c577e06c919e00fe:1", - "primaryLocationStartColumnFingerprint" : "21" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ti." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 12440, - "startColumn" : 70, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "232df00fd309b77f:1", - "primaryLocationStartColumnFingerprint" : "66" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable html." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 12664, - "startColumn" : 98, - "endColumn" : 102 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5c9d0283a4434383:1", - "primaryLocationStartColumnFingerprint" : "94" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable rootNode." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 13302, - "startColumn" : 21, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f83c15f357028245:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 13767, - "startColumn" : 20, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "81e0ff53bc0cda19:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable type." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 13785, - "startColumn" : 8, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7fd49e2169fc6a0f:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable bookmark." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14312, - "startColumn" : 9, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "460cd2886222a08c:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14621, - "startColumn" : 16, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b067e0b72530ff65:1", - "primaryLocationStartColumnFingerprint" : "11" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable DOM." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14782, - "startColumn" : 6, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "36483fc767590a93:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14786, - "startColumn" : 18, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "de0c9e97d32dc5fd:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ctrlName." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14837, - "startColumn" : 66, - "endColumn" : 74 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "492bd4003028de5:1", - "primaryLocationStartColumnFingerprint" : "62" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cmd." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14927, - "startColumn" : 33, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5909b2fbb071b38f:1", - "primaryLocationStartColumnFingerprint" : "29" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable o." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14987, - "startColumn" : 33, - "endColumn" : 34 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eb4acecfffb11db9:1", - "primaryLocationStartColumnFingerprint" : "29" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cmd." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15032, - "startColumn" : 33, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5909b2fbb071b38f:2", - "primaryLocationStartColumnFingerprint" : "29" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cmd." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15068, - "startColumn" : 33, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ef2ce1565281d2e0:1", - "primaryLocationStartColumnFingerprint" : "29" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable x." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15188, - "startColumn" : 26, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "30f646fc0b81f2be:1", - "primaryLocationStartColumnFingerprint" : "22" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable y." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15188, - "startColumn" : 29, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "30f646fc0b81f2be:1", - "primaryLocationStartColumnFingerprint" : "25" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable isArray." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15297, - "startColumn" : 4, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7bf898b1bf62ab2b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15492, - "startColumn" : 71, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f48d3e74e77d7c00:1", - "primaryLocationStartColumnFingerprint" : "67" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15875, - "startColumn" : 66, - "endColumn" : 67 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "651a6b9c5c267345:1", - "primaryLocationStartColumnFingerprint" : "62" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable localContentEditable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15879, - "startColumn" : 25, - "endColumn" : 45 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2086fc86836f5e1:1", - "primaryLocationStartColumnFingerprint" : "20" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable node." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15999, - "startColumn" : 39, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f59982e766db1328:1", - "primaryLocationStartColumnFingerprint" : "34" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16181, - "startColumn" : 64, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "48288de4e04b0964:1", - "primaryLocationStartColumnFingerprint" : "60" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ni." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16181, - "startColumn" : 67, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "48288de4e04b0964:1", - "primaryLocationStartColumnFingerprint" : "63" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable name." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16181, - "startColumn" : 71, - "endColumn" : 75 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "48288de4e04b0964:1", - "primaryLocationStartColumnFingerprint" : "67" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sibling." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16365, - "startColumn" : 8, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c9d589329d4b1890:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable child." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16373, - "startColumn" : 28, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6a7f74efd77f7ea6:1", - "primaryLocationStartColumnFingerprint" : "23" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable marker." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16850, - "startColumn" : 8, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98d9bb9385283b5b:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable walker." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 16956, - "startColumn" : 36, - "endColumn" : 42 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5a3a5843e3fb22b:1", - "primaryLocationStartColumnFingerprint" : "32" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 17213, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ddd50ac8c275a0f:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable node." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 17213, - "startColumn" : 28, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ddd50ac8c275a0f:1", - "primaryLocationStartColumnFingerprint" : "23" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable d." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/editable_selects.js", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - }, - "region" : { - "startLine" : 15, - "startColumn" : 56, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b77e2861635b6d1c:1", - "primaryLocationStartColumnFingerprint" : "53" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable t." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 40, - "startColumn" : 6, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9c7465a02701e7f:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable msg." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 116, - "startColumn" : 40, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b0ff2a43d5728483:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 139, - "startColumn" : 7, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "db274c24b82b5c9e:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 359, - "startColumn" : 7, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e91ba3f29aff7cef:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable r." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 376, - "startColumn" : 8, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c5f3cb911f0f6a7a:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable discount." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/billing/upgrade.html", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 22, - "startColumn" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc048397449f8b22:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always null." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6775, - "startColumn" : 14, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c403855c0c024540:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always null." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6776, - "startColumn" : 11, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "458dc788ba168afb:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always undefined." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6874, - "startColumn" : 11, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cd82bca415cfe994:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always undefined." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6874, - "startColumn" : 18, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cd82bca415cfe994:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always undefined." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5614, - "startColumn" : 11, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34968d605b7e89cb:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '|' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 722, - "startColumn" : 71, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7820a043f81b48cd:1", - "primaryLocationStartColumnFingerprint" : "64" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 722, - "startColumn" : 75, - "endColumn" : 76 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character ''' is repeated [here](1) in the same character class.\nCharacter ''' is repeated [here](2) in the same character class.\nCharacter ''' is repeated [here](3) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 722, - "startColumn" : 72, - "endColumn" : 73 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7820a043f81b48cd:1", - "primaryLocationStartColumnFingerprint" : "65" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 722, - "startColumn" : 74, - "endColumn" : 75 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 722, - "startColumn" : 76, - "endColumn" : 77 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 722, - "startColumn" : 78, - "endColumn" : 79 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '^' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 21, - "startColumn" : 75, - "endColumn" : 76 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "97a00a111f3daf92:1", - "primaryLocationStartColumnFingerprint" : "71" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 21, - "startColumn" : 82, - "endColumn" : 83 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '0' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 21, - "startColumn" : 84, - "endColumn" : 85 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "97a00a111f3daf92:1", - "primaryLocationStartColumnFingerprint" : "80" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 21, - "startColumn" : 85, - "endColumn" : 86 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '?' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 22, - "startColumn" : 64, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc8b156ab239affb:1", - "primaryLocationStartColumnFingerprint" : "60" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 22, - "startColumn" : 68, - "endColumn" : 69 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "ruleIndex" : 3, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "index" : 3 - }, - "message" : { - "text" : "The indentation of this statement suggests that it is controlled by [this statement](1), while in fact it is not." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 1029, - "startColumn" : 7, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f04cbd337ac9bfbc:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 54 - } - }, - "message" : { - "text" : "this statement" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable block is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4428, - "startColumn" : 46, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "78c92747c5241a4:1", - "primaryLocationStartColumnFingerprint" : "43" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4691, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4427c94bd81cb7be:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4702, - "startColumn" : 36, - "endColumn" : 39 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38a2514c26bef233:1", - "primaryLocationStartColumnFingerprint" : "32" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4815, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d8f8fd1a16867c31:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5044, - "startColumn" : 78, - "endColumn" : 81 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a91e649faec4df4:1", - "primaryLocationStartColumnFingerprint" : "74" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5281, - "startColumn" : 46, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d0d005c83a453178:1", - "primaryLocationStartColumnFingerprint" : "44" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5296, - "startColumn" : 43, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e04b46cd14b86291:1", - "primaryLocationStartColumnFingerprint" : "41" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable doc is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5309, - "startColumn" : 3, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "57ec503113d73654:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable module_name is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5318, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bf7f09e1e31e174c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable startPage is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5393, - "startColumn" : 6, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a2d0dbceb28391aa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable $curr is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5514, - "startColumn" : 8, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bcf5b94e316a657c:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable $curr is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5563, - "startColumn" : 11, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "81a1a2933193f241:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5769, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d7b6916976c4b8e5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5777, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49383c972b3e0bf9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5803, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2be1ad83eb163ee6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5830, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3103c81bc9129fbe:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5840, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c2ceda17829c5d76:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5849, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e56a36282b972aca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5853, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66394299481723dd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5871, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1a09f4967dba6e0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5880, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1c081664a322ac26:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5890, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7aaa73dbc725b33:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5900, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a58d6abaecfaf96:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable activeTab is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5930, - "startColumn" : 3, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1476ec56ed65667a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id_conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5931, - "startColumn" : 3, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1918da72a08e7911:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5939, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "64a913f10604fb01:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users_list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5962, - "startColumn" : 2, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "df42c27f5f0f36f7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5963, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f7e1b96b6a9863bd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6002, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9898ec14746c31f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6009, - "startColumn" : 53, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ff8c3e8ef4a7dc2d:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable my_list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6022, - "startColumn" : 2, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6debca1d561747e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6023, - "startColumn" : 2, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5f9508b941713bd0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6024, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2011b68fe49178df:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6031, - "startColumn" : 51, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f6ec73b1738dc459:1", - "primaryLocationStartColumnFingerprint" : "49" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6032, - "startColumn" : 2, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5a9e09c6b5e1f1c7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6033, - "startColumn" : 2, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "61f64fcff078ce72:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable new_msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6051, - "startColumn" : 4, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "45f1fdd47dcc6a6f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6053, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c58b7c1206d1d5cc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable text is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6054, - "startColumn" : 42, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "538164ce26964ac3:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable time is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6056, - "startColumn" : 5, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f65944e6a15ab05c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6057, - "startColumn" : 5, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "37f6d9ce35e16336:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable profile is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6058, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bc3b8d6c14708a3b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6110, - "startColumn" : 5, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d081ba486c85fe6f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable dates is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7401, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "193a0b42ff4a6e3f:1", - "primaryLocationStartColumnFingerprint" : "8" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable maxEnd is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7579, - "startColumn" : 4, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "88f59ced044e4c04:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 43, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "74fc97b021e0d642:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 54, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a2a65d42c190e649:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 103, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "663942a79e643313:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 127, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d6003dae0e756a6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 138, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "85182badd8e5b003:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 148, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e5763e96502c833:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 153, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "663942a79e643313:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 170, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1a19482c6f9100ae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 180, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "607f9c2d1417c6e8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 191, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d730c299ccf954f2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 202, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c2020dcc657b5690:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable activeTab is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 246, - "startColumn" : 9, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1476ec56ed65667a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id_conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 247, - "startColumn" : 9, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8c8be1e5aabcb580:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 257, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9a1376a4b565a763:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 284, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "16249e66b88f8b98:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users_list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 292, - "startColumn" : 5, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "181a8509b076e9a4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable my_list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 348, - "startColumn" : 5, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b0a868e815fab58e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 349, - "startColumn" : 5, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d0f1235e877c8e0a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 356, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "497aa8d41af117d3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 367, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "497aa8d41af117d3:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 381, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "39e0d3efff147851:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 404, - "startColumn" : 13, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d982d2bd9182222f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 405, - "startColumn" : 13, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c6418d73cefd80ff:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 406, - "startColumn" : 13, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d4c47cc31178f909:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable new_msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 449, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47961dc72f04dba7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 451, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "58598925b13c03ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable text is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 453, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7273eda7ca5103:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable time is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 455, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7c33fb772328b323:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 456, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "52c0ed4934497a23:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable profile is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 457, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ed698cc92702f374:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 525, - "startColumn" : 17, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "17f1e32305593c69:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable block is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 84, - "startColumn" : 17, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1cee52bd142a13f7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable popup is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 509, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3fc6e74005b88f10:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable href is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 511, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "adc85f01288fbc56:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 529, - "startColumn" : 35, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "19d027d56fa9bea4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 542, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bf9951bf8dec09e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable clean_href is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 710, - "startColumn" : 17, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "25977bb9ef0ccc5f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 711, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3dac155684cd786e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 984, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5670a4b253407e35:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1364, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9361c4626cbb4f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1384, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d301dbea9addc1b4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable doc is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1402, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e60aef128689217c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable module_name is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1419, - "startColumn" : 7, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b4a64628090840cb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable ctx is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/effect/easing.html", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 39, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a07945efaca6ae68:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable dates is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 119, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "90fda3155727d343:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable maxEnd is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 419, - "startColumn" : 31, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "485eff08b93cb4fa:1", - "primaryLocationStartColumnFingerprint" : "27" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable fade_out_speed is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.gritter.js", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 198, - "startColumn" : 5, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2064577c40c02323:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable opt is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.gritter.js", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 303, - "startColumn" : 8, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "784bef7d950313c5:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable n is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 108, - "startColumn" : 6, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a38329befee6c667:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable rng is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 125, - "startColumn" : 6, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab19798d77997cab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable ca is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 52, - "startColumn" : 3, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "12c4039446d39fa3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable rs is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 53, - "startColumn" : 3, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c685972c7a3f39d7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable e is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 44, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "409126bd0c8f05a4:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable row is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 217, - "startColumn" : 4, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6c345691fc9b85:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable pos is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 284, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f9ca2ad2eda97e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable i is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 601, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e455177f1d1b6d71:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable y is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 703, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8ffd1021cfafb5bb:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable x is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 713, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98aac13df7750a32:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable bordercolor is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 32, - "startColumn" : 2, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "df12a1df051cb1d0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable bgcolor is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 33, - "startColumn" : 2, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "96551264e0f4379a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 35, - "startColumn" : 2, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8faab0a4c7c85e4e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable summary is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 36, - "startColumn" : 2, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eaf098fba5f67c3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable style is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 37, - "startColumn" : 2, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1e51806a08270dd0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable dir is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 38, - "startColumn" : 2, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ec293e7f95d7066:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable lang is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 39, - "startColumn" : 2, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "20631c08501475e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable background is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 40, - "startColumn" : 2, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "27127f8932d9b1d9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable st is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 334, - "startColumn" : 3, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1d8849d425f26d37:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable n is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - }, - "region" : { - "startLine" : 76, - "startColumn" : 4, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac9e2d6f1635d803:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable node is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 65, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f625362a9c54f57:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable className is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 38, - "startColumn" : 2, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ff2e19c2ebb260:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable elm is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 186, - "startColumn" : 2, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "898ccffe9a740246:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable previewStyles is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 18, - "startColumn" : 3, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e7e60f2409ea3054:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable v is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 9, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e033a9e90b148d00:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable col is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 75, - "startColumn" : 3, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51d3c975c932659f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 164, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e1fd9bf7427320c4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 165, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f0d59996dc1fef0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 166, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5ac3e8b39a4ceaac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 182, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "12412259f5b9b9f6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 183, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab1116d578a397b7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 184, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7bc43cdb1f9b246:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable e is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 19, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2cf9cae0fd87a27:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable e is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 23, - "startColumn" : 7, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a7d9413a462cff8c:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable nonEmptyElements is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 1771, - "startColumn" : 6, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f3154bb26557c0cb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable textBlockElementsMap is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3043, - "startColumn" : 3, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8bbe440533f597ae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable elementRule is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4616, - "startColumn" : 9, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bbce8b367ae63dc8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable textNode is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4641, - "startColumn" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1be0cfe6263eb0c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable styleElm is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6160, - "startColumn" : 4, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a65cf7b59df53bdf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable offset is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7892, - "startColumn" : 6, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b0abfb423cb04394:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable onBeforeAdd is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14471, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6bf04787b2a56dab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable tmpRng is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14707, - "startColumn" : 4, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d5c050d8b1a03327:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable label is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 16, - "startColumn" : 6, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7b209ff5e4f061ac:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 152, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e1fd9bf7427320c4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 153, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f0d59996dc1fef0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 154, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5ac3e8b39a4ceaac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 170, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "12412259f5b9b9f6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 171, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f5c43715fc12e9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 172, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66628a69558c37a3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable message is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 123, - "startColumn" : 6, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f06752d4a15b3872:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable $this is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.forms.ajaxform.js", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 28, - "startColumn" : 3, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d0a80ca319be952:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/misleading-indentation-of-dangling-else", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/misleading-indentation-of-dangling-else", - "index" : 5 - }, - "message" : { - "text" : "This else branch belongs to [this if statement](1), but its indentation suggests it belongs to [this other if statement](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6760, - "startColumn" : 4, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38642848f30192cb:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6758, - "startColumn" : 5, - "endColumn" : 7 - } - }, - "message" : { - "text" : "this if statement" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6741, - "startColumn" : 4, - "endColumn" : 6 - } - }, - "message" : { - "text" : "this other if statement" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "index" : 6 - }, - "message" : { - "text" : "Declaration of function updateColor conflicts with [another declaration](1) in the same scope." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1190, - "startColumn" : 14, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4f357a08663f0a6:1", - "primaryLocationStartColumnFingerprint" : "9" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1204, - "startColumn" : 14, - "endColumn" : 25 - } - }, - "message" : { - "text" : "another declaration" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of g overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 179, - "startColumn" : 3, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4742898c4661356e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 175, - "startColumn" : 7, - "endColumn" : 18 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of l overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 499, - "startColumn" : 6, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b23ac590b00cd4d0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 486, - "startColumn" : 10, - "endColumn" : 26 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of t overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3976, - "startColumn" : 4, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8fabb31907705727:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3973, - "startColumn" : 4, - "endColumn" : 23 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of a overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5020, - "startColumn" : 5, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6cc3cec18ac8614b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5018, - "startColumn" : 9, - "endColumn" : 35 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of c overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6822, - "startColumn" : 5, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9055c70b63a7fac:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6821, - "startColumn" : 9, - "endColumn" : 17 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of g overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7547, - "startColumn" : 4, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8666fc427bb56b0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7545, - "startColumn" : 4, - "endColumn" : 22 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of d overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bce826c5bf2ecd5d:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of d overwrites [an earlier initialization](1).\nThis initialization of d overwrites [an earlier initialization](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e95a2989033b7b9f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "an earlier initialization" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of d overwrites [an earlier initialization](1).\nThis initialization of d overwrites [an earlier initialization](2).\nThis initialization of d overwrites [an earlier initialization](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7801, - "startColumn" : 3, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e59bc66258af358:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "an earlier initialization" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "an earlier initialization" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 7 - }, - "message" : { - "text" : "This initialization of c overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8096, - "startColumn" : 3, - "endColumn" : 277 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b98dd98aca26dcb3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8095, - "startColumn" : 7, - "endColumn" : 15 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "index" : 8 - }, - "message" : { - "text" : "This expression is of type boolean, but it is compared to [an expression](1) of type string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4661, - "startColumn" : 46, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a3b7077f6b8299b:1", - "primaryLocationStartColumnFingerprint" : "41" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4661, - "startColumn" : 59, - "endColumn" : 61 - } - }, - "message" : { - "text" : "an expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "index" : 8 - }, - "message" : { - "text" : "This expression is of type boolean, but it is compared to [an expression](1) of type string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 480, - "startColumn" : 17, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "37d40017f9326517:1", - "primaryLocationStartColumnFingerprint" : "4" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 480, - "startColumn" : 36, - "endColumn" : 38 - } - }, - "message" : { - "text" : "an expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 161, - "startColumn" : 3, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "71e2b156aeeadbfb:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 146, - "startColumn" : 2, - "endLine" : 162, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 900, - "startColumn" : 8, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7230ea0b1586f248:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 845, - "startColumn" : 14, - "endLine" : 903, - "endColumn" : 6 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1211, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1dc65858be62e39:1", - "primaryLocationStartColumnFingerprint" : "-3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1170, - "startColumn" : 3, - "endLine" : 1212, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1277, - "startColumn" : 4, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "50db321af5bb0f46:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1233, - "startColumn" : 3, - "endLine" : 1278, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (91% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1294, - "startColumn" : 17, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "58d027ffeaef2c75:1", - "primaryLocationStartColumnFingerprint" : "13" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1279, - "startColumn" : 3, - "endLine" : 1295, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1518, - "startColumn" : 5, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1ff634d92cda0c18:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1486, - "startColumn" : 4, - "endLine" : 1519, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1599, - "startColumn" : 4, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3451170edd88a4a3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1581, - "startColumn" : 8, - "endLine" : 1600, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1638, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "56a07c4357359f5:1", - "primaryLocationStartColumnFingerprint" : "-3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1601, - "startColumn" : 8, - "endLine" : 1639, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1780, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f46f2febe9501e48:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 185, - "startColumn" : 2, - "endLine" : 1781, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1921, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c1b7f79c8e2af4a:1", - "primaryLocationStartColumnFingerprint" : "-2" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 79, - "startColumn" : 2, - "endLine" : 4378, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2642, - "startColumn" : 4, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ecde08c7b3974478:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2628, - "startColumn" : 9, - "endLine" : 2643, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2677, - "endColumn" : 71 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ea34f345a5e33d43:1", - "primaryLocationStartColumnFingerprint" : "-6" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2656, - "startColumn" : 10, - "endLine" : 2679, - "endColumn" : 6 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3237, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1f1d09e36ae1ee93:1", - "primaryLocationStartColumnFingerprint" : "-2" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 79, - "startColumn" : 2, - "endLine" : 4378, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3414, - "startColumn" : 4, - "endColumn" : 31 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8fa50a4ff8974236:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3395, - "startColumn" : 9, - "endLine" : 3415, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3493, - "startColumn" : 4, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38fd10595f893b74:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3477, - "startColumn" : 12, - "endLine" : 3494, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3801, - "startColumn" : 4, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5291e15953026b0f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3766, - "startColumn" : 11, - "endLine" : 3802, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3851, - "startColumn" : 4, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1239fb56162e328:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3829, - "startColumn" : 15, - "endLine" : 3852, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4241, - "startColumn" : 5, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1f668c431679f521:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4220, - "startColumn" : 9, - "endLine" : 4242, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4339, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e05e00f7a9576ecb:1", - "primaryLocationStartColumnFingerprint" : "-6" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4272, - "startColumn" : 19, - "endLine" : 4343, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4377, - "endColumn" : 3 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "92c026a48c751114:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 79, - "startColumn" : 2, - "endLine" : 4378, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4463, - "startColumn" : 6, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c9951147bde3fb4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4453, - "startColumn" : 16, - "endLine" : 4502, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4473, - "startColumn" : 5, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ccfdc9fc88e84256:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4453, - "startColumn" : 16, - "endLine" : 4502, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4500, - "startColumn" : 4, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e3e93a785fce4495:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4453, - "startColumn" : 16, - "endLine" : 4502, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (91% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4560, - "startColumn" : 3, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bfc4e2de78644b7e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4548, - "startColumn" : 12, - "endLine" : 4561, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4601, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6bf57310a792cd6:1", - "primaryLocationStartColumnFingerprint" : "-2" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4583, - "startColumn" : 26, - "endLine" : 4602, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4724, - "startColumn" : 4, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "21839ccbd6c29a09:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4678, - "startColumn" : 25, - "endLine" : 4726, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4823, - "startColumn" : 5, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a50ba4d65b113944:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4768, - "startColumn" : 56, - "endLine" : 4824, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (91% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5320, - "startColumn" : 3, - "endColumn" : 60 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c16e23435ec956:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5308, - "startColumn" : 26, - "endLine" : 5321, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5321, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bf681ee083f4b6cb:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5269, - "startColumn" : 3, - "endLine" : 5322, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6372, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5db986aa6069fb8:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6361, - "startColumn" : 10, - "endLine" : 6373, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6433, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f83b736cef08120b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6422, - "startColumn" : 10, - "endLine" : 6434, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6594, - "startColumn" : 5, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "29cf1c60115c11f4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6547, - "startColumn" : 81, - "endLine" : 6596, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (98% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6598, - "endColumn" : 3 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "21a9a068d34b2852:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6251, - "startColumn" : 2, - "endLine" : 6599, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6745, - "startColumn" : 33, - "endColumn" : 67 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3b1671f80a1b43b:1", - "primaryLocationStartColumnFingerprint" : "31" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6600, - "startColumn" : 2, - "endLine" : 6746, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7092, - "startColumn" : 4, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6fd006a7c10e2069:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7073, - "startColumn" : 16, - "endLine" : 7093, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7113, - "startColumn" : 5, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ede705f5e52d0c2c:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7094, - "startColumn" : 11, - "endLine" : 7145, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7136, - "startColumn" : 5, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "125851aa52e537ce:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7094, - "startColumn" : 11, - "endLine" : 7145, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7144, - "startColumn" : 4, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f284d80973fdd4ca:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7094, - "startColumn" : 11, - "endLine" : 7145, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (98% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7288, - "endColumn" : 3 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5e4fce4731339e:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7003, - "startColumn" : 2, - "endLine" : 7289, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7849, - "startColumn" : 2, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e7e47b91f8062967:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7824, - "startColumn" : 19, - "endLine" : 7850, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7967, - "startColumn" : 3, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac52d21dc1c61c44:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7933, - "startColumn" : 16, - "endLine" : 7968, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8105, - "startColumn" : 3, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ccf245bfd51a9a53:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8094, - "startColumn" : 15, - "endLine" : 8106, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8165, - "startColumn" : 3, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b9427631c26bbc9a:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8136, - "startColumn" : 11, - "endLine" : 8166, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 332, - "startColumn" : 17, - "endColumn" : 90 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cb6902bfd536a4c0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 279, - "startColumn" : 29, - "endLine" : 342, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 351, - "startColumn" : 9, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4b365f558148d2b4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 344, - "startColumn" : 35, - "endLine" : 441, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 446, - "startColumn" : 5, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "abf989a43fcf10f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 445, - "startColumn" : 27, - "endLine" : 482, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example1/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example1/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example2/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example2/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example3/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example3/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example4/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example4/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example5/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example5/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (97% of all statements in [the enclosing script](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1178, - "endColumn" : 77 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b582ec2c4c85ab9:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1, - "endLine" : 1299, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing script" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 188, - "startColumn" : 11, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d3a282030679f395:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 131, - "startColumn" : 20, - "endLine" : 214, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 208, - "startColumn" : 9, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3dc3cbf4588667ec:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 131, - "startColumn" : 20, - "endLine" : 214, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 561, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "afc4fd460d3374eb:1", - "primaryLocationStartColumnFingerprint" : "-12" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 506, - "startColumn" : 30, - "endLine" : 574, - "endColumn" : 6 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 670, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5b450216c6aa156c:1", - "primaryLocationStartColumnFingerprint" : "-16" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 651, - "startColumn" : 27, - "endLine" : 724, - "endColumn" : 14 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 677, - "startColumn" : 17, - "endColumn" : 80 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2c89582f1b981811:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 651, - "startColumn" : 27, - "endLine" : 724, - "endColumn" : 14 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 135, - "startColumn" : 4, - "endColumn" : 58 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eb138b986e7ee446:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 132, - "startColumn" : 9, - "endLine" : 147, - "endColumn" : 10 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 423, - "startColumn" : 6, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6746b6523a43e199:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 418, - "startColumn" : 29, - "endLine" : 437, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 340, - "startColumn" : 4, - "endColumn" : 39 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e8f8be137baeb700:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 245, - "startColumn" : 3, - "endLine" : 414, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 9 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (97% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 11, - "startColumn" : 2, - "endColumn" : 107 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3bd301019f5241f6:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 5, - "endLine" : 61, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "index" : 10 - }, - "message" : { - "text" : "Superfluous argument passed to [function s](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1267, - "startColumn" : 34, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8080b01797565fb3:1", - "primaryLocationStartColumnFingerprint" : "30" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 764, - "startColumn" : 3, - "endLine" : 782, - "endColumn" : 4 - } - }, - "message" : { - "text" : "function s" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "index" : 10 - }, - "message" : { - "text" : "Superfluous argument passed to [function getParent](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1316, - "startColumn" : 8, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ca51f6088629b14:1", - "primaryLocationStartColumnFingerprint" : "3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1082, - "startColumn" : 4, - "endLine" : 1095, - "endColumn" : 5 - } - }, - "message" : { - "text" : "function getParent" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 36, - "startColumn" : 51, - "endColumn" : 67 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4b0d44f1e8579db:1", - "primaryLocationStartColumnFingerprint" : "49" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 39, - "startColumn" : 43, - "endColumn" : 59 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 40, - "startColumn" : 2, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51f60d255f7fc351:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 40, - "startColumn" : 24, - "endColumn" : 45 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 42, - "startColumn" : 2, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ca7c8a90bce765f1:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 42, - "startColumn" : 30, - "endColumn" : 57 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 43, - "startColumn" : 2, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ec6591f50b4c3d57:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 43, - "startColumn" : 23, - "endColumn" : 43 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 44, - "startColumn" : 2, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3262b2d31fcb471:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 49, - "startColumn" : 114, - "endColumn" : 133 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 44, - "startColumn" : 108, - "endColumn" : 124 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3262b2d31fcb471:1", - "primaryLocationStartColumnFingerprint" : "106" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 44, - "startColumn" : 125, - "endColumn" : 141 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 47, - "startColumn" : 85, - "endColumn" : 107 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1c5e859ba6d87541:1", - "primaryLocationStartColumnFingerprint" : "83" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 47, - "startColumn" : 108, - "endColumn" : 130 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 48, - "startColumn" : 105, - "endColumn" : 133 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9add69663958c231:1", - "primaryLocationStartColumnFingerprint" : "103" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 48, - "startColumn" : 134, - "endColumn" : 162 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 56, - "startColumn" : 46, - "endColumn" : 68 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "221c90a72cbc497e:1", - "primaryLocationStartColumnFingerprint" : "44" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 56, - "startColumn" : 69, - "endColumn" : 91 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 11 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14278, - "startColumn" : 4, - "endLine" : 14280, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9a0750848511b526:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14329, - "startColumn" : 4, - "endLine" : 14331, - "endColumn" : 5 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4516, - "startColumn" : 25, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "65792e0deb3c5f46:1", - "primaryLocationStartColumnFingerprint" : "22" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5320, - "startColumn" : 3, - "endColumn" : 60 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c16e23435ec956:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 233, - "startColumn" : 11, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cbcd63f4a79df14b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1422, - "startColumn" : 7, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e47e834019a6b8f6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 150 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 13, - "startColumn" : 3, - "endColumn" : 149 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - }, - "region" : { - "startLine" : 72, - "startColumn" : 2, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "70b79939db071b88:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 5, - "startColumn" : 3, - "endColumn" : 149 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 72, - "startColumn" : 2, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "70b79939db071b88:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 7, - "endColumn" : 74 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e2088871b5fe73a0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 14, - "startColumn" : 2, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cb8e1d583866c682:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 156 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a89ad9b22c6fb22b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 150 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 12 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 150 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/use-before-declaration", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/use-before-declaration", - "index" : 13 - }, - "message" : { - "text" : "Variable 'q' is used before its [declaration](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5353, - "startColumn" : 19, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "656bc8ef96ac1936:1", - "primaryLocationStartColumnFingerprint" : "12" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5357, - "startColumn" : 10, - "endColumn" : 11 - } - }, - "message" : { - "text" : "declaration" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'c' always evaluates to false." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 471, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3e56a71c4896e4ea:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'd' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 512, - "startColumn" : 28, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "870665908d3eba95:1", - "primaryLocationStartColumnFingerprint" : "20" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'bValid' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 79, - "startColumn" : 15, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "947b375e00709aeb:1", - "primaryLocationStartColumnFingerprint" : "9" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'date' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1313, - "startColumn" : 7, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dfc0ad381c1fb4bf:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'sum' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.resizable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - }, - "region" : { - "startLine" : 859, - "startColumn" : 22, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7d14f7958ec391f5:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'sv' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 232, - "startColumn" : 11, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49f28f056dfdf311:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'sv' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 209, - "startColumn" : 11, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49f28f056dfdf311:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This negation always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5591, - "startColumn" : 8, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f1fdc833de86d050:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 14 - }, - "message" : { - "text" : "This use of variable 'isIE' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6367, - "startColumn" : 12, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8e204a6d0df8f4d:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-expression", - "ruleIndex" : 15, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-expression", - "index" : 15 - }, - "message" : { - "text" : "This expression has no effect." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1671, - "startColumn" : 3, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "93affca20aa1faaa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redundant-operation", - "ruleIndex" : 16, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redundant-operation", - "index" : 16 - }, - "message" : { - "text" : "Operands [sibling ... == 'ul'](1) and [sibling ... == 'ul'](2) are identical." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4145, - "startColumn" : 23, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1a78b613c2674a5e:1", - "primaryLocationStartColumnFingerprint" : "16" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4145, - "startColumn" : 23, - "endColumn" : 44 - } - }, - "message" : { - "text" : "sibling ... == 'ul'" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4145, - "startColumn" : 48, - "endColumn" : 69 - } - }, - "message" : { - "text" : "sibling ... == 'ul'" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redundant-operation", - "ruleIndex" : 16, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redundant-operation", - "index" : 16 - }, - "message" : { - "text" : "Operands [sibling ... == 'ul'](1) and [sibling ... == 'ul'](2) are identical." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4151, - "startColumn" : 23, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9883beb02bcf703f:1", - "primaryLocationStartColumnFingerprint" : "16" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4151, - "startColumn" : 23, - "endColumn" : 44 - } - }, - "message" : { - "text" : "sibling ... == 'ul'" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4151, - "startColumn" : 48, - "endColumn" : 69 - } - }, - "message" : { - "text" : "sibling ... == 'ul'" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unreachable-statement", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "index" : 17 - }, - "message" : { - "text" : "This statement is unreachable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 349, - "startColumn" : 9, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8b793be74b1fb4e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unreachable-statement", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "index" : 17 - }, - "message" : { - "text" : "This statement is unreachable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 557, - "startColumn" : 9, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bcf8e83a6a5a56dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unreachable-statement", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "index" : 17 - }, - "message" : { - "text" : "This statement is unreachable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 680, - "startColumn" : 5, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "abbb36808c631baf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redundant-assignment", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redundant-assignment", - "index" : 18 - }, - "message" : { - "text" : "This expression assigns variable cols to itself." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 331, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3ac8721770ca586a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to h here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4334, - "startColumn" : 52, - "endLine" : 4339, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a0f84101f89b2559:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to d here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6773, - "startColumn" : 7, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "429da0f96b1a5117:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to responseText here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1090, - "startColumn" : 13, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "33885e4cb8dea09e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to otherVal here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.slider.js", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 318, - "startColumn" : 5, - "endColumn" : 44 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a1c871e3cacc580c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to e here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 669, - "startColumn" : 5, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "26055bf525d09b8b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to posterSrc here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 491, - "startColumn" : 6, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e3fae4714d832ec:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to child here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 131, - "startColumn" : 7, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "da5d84dfbdc3cbc1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to child here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 143, - "startColumn" : 8, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "68fface7313de96f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to html here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 716, - "startColumn" : 6, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49b4a79744af59dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to os here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 64, - "startColumn" : 8, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a9a474a67e622038:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to os here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 88, - "startColumn" : 8, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b202e2bfa3d67caf:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to nextTr here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 505, - "startColumn" : 5, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7f76ead3ea013190:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to endNode here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 960, - "startColumn" : 8, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f6c954a8f712e7db:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to cell here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 152, - "startColumn" : 7, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4089863fae198fd0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The initial value of cols is unused, since it is always overwritten." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 8, - "startColumn" : 6, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d32b2ec3623eacf2:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The initial value of rows is unused, since it is always overwritten." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 8, - "startColumn" : 16, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d32b2ec3623eacf2:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to tagName here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 160, - "startColumn" : 4, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38d18c3cda6b5671:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 636, - "startColumn" : 4, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e611cbd2a69047d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 802, - "startColumn" : 5, - "endColumn" : 64 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "605c3836030dd8b8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 857, - "startColumn" : 5, - "endColumn" : 64 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "88e97efe88629916:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to partDetail here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 291, - "startColumn" : 2, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8256c7649a643ae4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - }, - "region" : { - "startLine" : 40, - "startColumn" : 4, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a04c56ca5650f84a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - }, - "region" : { - "startLine" : 44, - "startColumn" : 4, - "endColumn" : 79 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b485b08eefd6d1f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to o here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 329, - "startColumn" : 18, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d95211b395d0ba61:1", - "primaryLocationStartColumnFingerprint" : "12" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to li here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 329, - "startColumn" : 22, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d95211b395d0ba61:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to t here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 1276, - "startColumn" : 4, - "endColumn" : 31 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e63d150d786aa48c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to attrs here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3796, - "startColumn" : 10, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "86b798c2a2217e6a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to textNode here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4438, - "startColumn" : 12, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4750b22058dfdd33:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to textNode here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4467, - "startColumn" : 12, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc34b53b5e622c81:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to target here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5184, - "startColumn" : 4, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "14ed996ecdde8b60:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to callbackList here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5184, - "startColumn" : 13, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "14ed996ecdde8b60:1", - "primaryLocationStartColumnFingerprint" : "9" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to namespace here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 5433, - "startColumn" : 2, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c0beda8989cac25c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to attributes here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6631, - "startColumn" : 7, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "11f400ecc5bb08b3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to lastNode here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 6673, - "startColumn" : 69, - "endColumn" : 84 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "436a7255123360d2:1", - "primaryLocationStartColumnFingerprint" : "64" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to commonParent here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7405, - "startColumn" : 4, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f81c6d4892d956ef:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to el here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8052, - "startColumn" : 4, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d3de51ee4f52e3d5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to content here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8246, - "startColumn" : 4, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bc2a9fc055e1b84b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 8965, - "startColumn" : 5, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "27496d0cd762dca2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to nodeName here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 9065, - "startColumn" : 8, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c1df3407b4987744:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to e here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10912, - "startColumn" : 5, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fa7234121a5896ed:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to p1 here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11291, - "startColumn" : 4, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1d8847bd3d74e63a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to e here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 11487, - "startColumn" : 4, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4b64f1a19695fdc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 12632, - "startColumn" : 4, - "endLine" : 12643, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3ec760136fd51bca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to child here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 17066, - "startColumn" : 8, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "589242758f332e36:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to node here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 17457, - "startColumn" : 7, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fbd7a5852d8fe991:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to selectionClass here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 74, - "startColumn" : 2, - "endColumn" : 59 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7b073cf36d86117a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 19 - }, - "message" : { - "text" : "The value assigned to elapsed here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 696, - "startColumn" : 6, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "121779417ffc4156:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "ruleIndex" : 20, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "index" : 20 - }, - "message" : { - "text" : "This expression will be implicitly converted from undefined to string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4178, - "startColumn" : 8, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "17877e06fa332093:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "ruleIndex" : 20, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "index" : 20 - }, - "message" : { - "text" : "This expression will be implicitly converted from undefined to string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4179, - "startColumn" : 25, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "134ed51462a6a706:1", - "primaryLocationStartColumnFingerprint" : "20" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "ruleIndex" : 20, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/implicit-operand-conversion", - "index" : 20 - }, - "message" : { - "text" : "This expression will be implicitly converted from undefined to string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 4184, - "startColumn" : 19, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c7d999a27aa026ee:1", - "primaryLocationStartColumnFingerprint" : "13" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable g has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 179, - "startColumn" : 3, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4742898c4661356e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 175, - "startColumn" : 7, - "endColumn" : 18 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 230, - "startColumn" : 8, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa96b1e67c5e26d0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 228, - "startColumn" : 8, - "endColumn" : 17 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable i has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 465, - "startColumn" : 6, - "endLine" : 470, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "440fd3265aa95664:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 460, - "startColumn" : 10, - "endColumn" : 22 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 499, - "startColumn" : 6, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b23ac590b00cd4d0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 486, - "startColumn" : 10, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable e has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 788, - "startColumn" : 5, - "endColumn" : 42 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "db9a62406e39029f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 786, - "startColumn" : 5, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 961, - "startColumn" : 7, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7bcc135986958ad8:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 957, - "startColumn" : 11, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable a has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1135, - "startColumn" : 7, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc09f57cb5eda974:1", - "primaryLocationStartColumnFingerprint" : "3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1133, - "startColumn" : 8, - "endColumn" : 25 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable na has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1311, - "startColumn" : 3, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "857728556ffd0103:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1310, - "startColumn" : 3, - "endColumn" : 16 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable s has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1384, - "startColumn" : 5, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "253e46a26e881a02:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1382, - "startColumn" : 5, - "endColumn" : 16 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1930, - "startColumn" : 4, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6f804145fe0b0db3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 1925, - "startColumn" : 8, - "endColumn" : 19 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable p has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2358, - "startColumn" : 3, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fb61cc6fdbf31b6f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2356, - "startColumn" : 3, - "endColumn" : 14 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2359, - "startColumn" : 3, - "endLine" : 2376, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "44f9120e515a272:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2350, - "startColumn" : 3, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable f has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2763, - "startColumn" : 4, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4c4a21f1c5193187:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2762, - "startColumn" : 11, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable g has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2806, - "startColumn" : 5, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9720b82953c8a176:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2801, - "startColumn" : 5, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2880, - "startColumn" : 5, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9407e57530201b5f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 2879, - "startColumn" : 5, - "endColumn" : 14 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable e has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3111, - "startColumn" : 7, - "endLine" : 3113, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "afbbb9c6b7d21f7b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3107, - "startColumn" : 11, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable b has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3419, - "startColumn" : 4, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "22aef6d286d2cbfc:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3418, - "startColumn" : 4, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable m has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3679, - "startColumn" : 6, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5b412b0860288c5f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3678, - "startColumn" : 10, - "endColumn" : 20 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable f has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3772, - "startColumn" : 4, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8ed7e137f8d8e840:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3770, - "startColumn" : 4, - "endColumn" : 19 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable b has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3821, - "startColumn" : 4, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67418199078cfbae:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3818, - "startColumn" : 8, - "endColumn" : 24 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable h has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3873, - "startColumn" : 4, - "endLine" : 3875, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f278c5aae556ce04:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3872, - "startColumn" : 4, - "endColumn" : 16 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable t has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3976, - "startColumn" : 4, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8fabb31907705727:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3973, - "startColumn" : 4, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable f has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4741, - "startColumn" : 6, - "endColumn" : 31 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8b9f93869e8fba10:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4740, - "startColumn" : 10, - "endColumn" : 40 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable a has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4999, - "startColumn" : 5, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3aeadcc1ad844fe9:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4997, - "startColumn" : 9, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable a has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5020, - "startColumn" : 5, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6cc3cec18ac8614b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5018, - "startColumn" : 9, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable d has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5176, - "startColumn" : 5, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "95091bc4642c55e2:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5173, - "startColumn" : 9, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable x has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5466, - "startColumn" : 7, - "endColumn" : 84 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e319ca49f51e487e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 5465, - "startColumn" : 7, - "endColumn" : 51 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6822, - "startColumn" : 5, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9055c70b63a7fac:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6821, - "startColumn" : 9, - "endColumn" : 17 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable b has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7546, - "startColumn" : 4, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fee0354f1eba27fa:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7544, - "startColumn" : 8, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable g has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7547, - "startColumn" : 4, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8666fc427bb56b0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7545, - "startColumn" : 4, - "endColumn" : 22 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "266605f508183857:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable d has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bce826c5bf2ecd5d:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1).\nVariable c has already been declared [here](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7798, - "startColumn" : 3, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4f3775d1f115a7f7:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable d has already been declared [here](1).\nVariable d has already been declared [here](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e95a2989033b7b9f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1).\nVariable c has already been declared [here](2).\nVariable c has already been declared [here](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7800, - "startColumn" : 3, - "endColumn" : 34 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e0a49f4a7dc9d3d5:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7798, - "startColumn" : 3, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable d has already been declared [here](1).\nVariable d has already been declared [here](2).\nVariable d has already been declared [here](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7801, - "startColumn" : 3, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e59bc66258af358:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1).\nVariable c has already been declared [here](2).\nVariable c has already been declared [here](3).\nVariable c has already been declared [here](4)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7802, - "startColumn" : 3, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f84d2fd813b43a50:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7798, - "startColumn" : 3, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 4, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7800, - "startColumn" : 3, - "endColumn" : 34 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8096, - "startColumn" : 3, - "endColumn" : 277 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b98dd98aca26dcb3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8095, - "startColumn" : 7, - "endColumn" : 15 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable src has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 133, - "startColumn" : 76, - "endColumn" : 79 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac028300fbf05299:1", - "primaryLocationStartColumnFingerprint" : "71" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 133, - "startColumn" : 46, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 21 - }, - "message" : { - "text" : "Variable invisibleChar has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 17, - "startColumn" : 105, - "endColumn" : 129 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b727ad69f2a9b6af:1", - "primaryLocationStartColumnFingerprint" : "102" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 17, - "startColumn" : 47, - "endColumn" : 60 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "ruleIndex" : 22, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "index" : 22 - }, - "message" : { - "text" : "External links without noopener/noreferrer are a potential security risk." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/administration/settings_view.html", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 48, - "startColumn" : 50, - "endColumn" : 102 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ccc38be67f2b59d:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "ruleIndex" : 23, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "index" : 23 - }, - "message" : { - "text" : "This attribute is duplicated [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/database_setup.html", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 13, - "startColumn" : 11, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5c79bb4a808a43c:1", - "primaryLocationStartColumnFingerprint" : "6" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/database_setup.html", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 13, - "startColumn" : 59, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unknown-directive", - "ruleIndex" : 24, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unknown-directive", - "index" : 24 - }, - "message" : { - "text" : "Unknown directive: '$:nomunge'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ba-serializeobject.js", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 14, - "startColumn" : 3, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3576de2477c2c946:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 25 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with 'a@' and containing many repetitions of '9.9.'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 85, - "startColumn" : 505, - "endColumn" : 733 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34885015b6b29271:1", - "primaryLocationStartColumnFingerprint" : "499" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 25 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with 'a@a' and containing many repetitions of '9.9'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 85, - "startColumn" : 613, - "endColumn" : 675 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34885015b6b29271:1", - "primaryLocationStartColumnFingerprint" : "607" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 25 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with 'a&' and containing many repetitions of 'a;&'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 80, - "startColumn" : 30, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fcf436e8176571cb:1", - "primaryLocationStartColumnFingerprint" : "24" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 25 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with '<- ' and containing many repetitions of '! '." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3522, - "startColumn" : 12, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c2ed4ee43eabb5a1:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This replaces only the first occurrence of \"<\"." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 3143, - "startColumn" : 279, - "endColumn" : 288 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "697e2078c911bd4:1", - "primaryLocationStartColumnFingerprint" : "274" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This replaces only the first occurrence of \"\\\\\"." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6548, - "startColumn" : 37, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3c2f5215c724deb5:1", - "primaryLocationStartColumnFingerprint" : "33" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This does not escape backslash characters in the input." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - }, - "region" : { - "startLine" : 32, - "startColumn" : 11, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c80421660ef3f97:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This does not escape backslash characters in the input." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 301, - "startColumn" : 17, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b3bbf62b34af44c:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This replaces only the first occurrence of '\\n'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 190, - "startColumn" : 34, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4a941fd766d12f2e:1", - "primaryLocationStartColumnFingerprint" : "29" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This does not escape backslash characters in the input." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 2609, - "startColumn" : 19, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bba488984eab6efd:1", - "primaryLocationStartColumnFingerprint" : "13" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This does not escape backslash characters in the input." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 2619, - "startColumn" : 22, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "57cf33fbb59c0042:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 26 - }, - "message" : { - "text" : "This replaces only the first occurrence of ' '." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 14355, - "startColumn" : 18, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fde91731c2b1dc38:1", - "primaryLocationStartColumnFingerprint" : "13" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "ruleIndex" : 27, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "index" : 27 - }, - "message" : { - "text" : "This write to property 'counter' is useless, since [another property write](1) always overrides it." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 1148, - "startColumn" : 33, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "40ae99287e7df8d:1", - "primaryLocationStartColumnFingerprint" : "30" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 1148, - "startColumn" : 3, - "endColumn" : 51 - } - }, - "message" : { - "text" : "another property write" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 28 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'macromedia.com/pub/shockwave/cabs/flash/swflash', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 18, - "startColumn" : 87, - "endColumn" : 171 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3c725cfcd2677d7b:1", - "primaryLocationStartColumnFingerprint" : "84" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 28 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'macromedia.com/pub/shockwave/cabs/director/sw', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 19, - "startColumn" : 84, - "endColumn" : 165 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "79b1b5be75fb1b8d:1", - "primaryLocationStartColumnFingerprint" : "81" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 28 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'microsoft.com/activex/controls/mplayer/en/nsmp2inf', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 20, - "startColumn" : 161, - "endColumn" : 249 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3fece0909814abf2:1", - "primaryLocationStartColumnFingerprint" : "158" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 28 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'apple.com/qtactivex/qtplugin', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 21, - "startColumn" : 77, - "endColumn" : 136 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "baa83464899c850f:1", - "primaryLocationStartColumnFingerprint" : "74" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 28 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'macromedia.com/pub/shockwave/cabs/flash/swflash', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 22, - "startColumn" : 89, - "endColumn" : 173 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8ad5248e23031514:1", - "primaryLocationStartColumnFingerprint" : "86" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 28 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'sun.com/products/plugin/autodl/jinstall-1_5_0-windows-i586', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 23, - "startColumn" : 82, - "endColumn" : 172 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fa7eb8938ebc8874:1", - "primaryLocationStartColumnFingerprint" : "79" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "index" : 29 - }, - "message" : { - "text" : "Removing an array item without adjusting the loop index 'i' causes the subsequent array item to be skipped." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 71, - "startColumn" : 5, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a0244b916b792ba9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 30, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 30 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 220, - "startColumn" : 55, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5bc93733f296b513:1", - "primaryLocationStartColumnFingerprint" : "53" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 220, - "startColumn" : 39, - "endColumn" : 70 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 30, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 30 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 226, - "startColumn" : 68, - "endColumn" : 70 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ce0746afae7a611:1", - "primaryLocationStartColumnFingerprint" : "65" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 226, - "startColumn" : 49, - "endColumn" : 78 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 30, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 30 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 227, - "startColumn" : 31, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "76a7d7cbd7b16471:1", - "primaryLocationStartColumnFingerprint" : "28" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 253, - "startColumn" : 48, - "endColumn" : 54 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 30, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 30 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 27, - "startColumn" : 95, - "endColumn" : 97 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2ed8420357e0fd27:1", - "primaryLocationStartColumnFingerprint" : "92" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 70, - "startColumn" : 32, - "endColumn" : 33 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "ruleIndex" : 31, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "index" : 31 - }, - "message" : { - "text" : "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\nPotential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\nPotential XSS vulnerability in the ['$.fn.datepicker' plugin](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "862d0932c3f65e9c:1", - "primaryLocationStartColumnFingerprint" : "2" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 9598, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 9629, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 9598, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 9629, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 28, - "endColumn" : 30 - } - }, - "message" : { - "text" : "{}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1998, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 2029, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1998, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 2029, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 28, - "endColumn" : 30 - } - }, - "message" : { - "text" : "{}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 541, - "startColumn" : 10, - "endColumn" : 11 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 542, - "startColumn" : 154, - "endColumn" : 155 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 541, - "startColumn" : 10, - "endColumn" : 11 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 542, - "startColumn" : 154, - "endColumn" : 155 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 28, - "endColumn" : 30 - } - }, - "message" : { - "text" : "{}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 9598, - "startColumn" : 19, - "endLine" : 9631, - "endColumn" : 2 - } - }, - "message" : { - "text" : "'$.fn.datepicker' plugin" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 1998, - "startColumn" : 19, - "endLine" : 2031, - "endColumn" : 2 - } - }, - "message" : { - "text" : "'$.fn.datepicker' plugin" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 541, - "endLine" : 542, - "endColumn" : 159 - } - }, - "message" : { - "text" : "'$.fn.datepicker' plugin" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "ruleIndex" : 31, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "index" : 31 - }, - "message" : { - "text" : "Potential XSS vulnerability in the ['$.fn.position' plugin](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 126, - "startColumn" : 15, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cdbebfebc041366e:1", - "primaryLocationStartColumnFingerprint" : "12" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 117, - "startColumn" : 27, - "endColumn" : 34 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 118, - "startColumn" : 20, - "endColumn" : 27 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 118, - "startColumn" : 20, - "endColumn" : 30 - } - }, - "message" : { - "text" : "options.of" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 126, - "startColumn" : 15, - "endColumn" : 25 - } - }, - "message" : { - "text" : "options.of" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 117, - "startColumn" : 17, - "endLine" : 295, - "endColumn" : 2 - } - }, - "message" : { - "text" : "'$.fn.position' plugin" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 24, - "endColumn" : 118 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4a980240eec311bb:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 54, - "endColumn" : 68 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 24, - "endColumn" : 118 - } - }, - "message" : { - "text" : "''" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 54, - "endColumn" : 68 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "703eafa65a81eae4:1", - "primaryLocationStartColumnFingerprint" : "31" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "50c5e6da4202e956:1", - "primaryLocationStartColumnFingerprint" : "8" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 31, - "endColumn" : 125 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4a980240eec311bb:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 61, - "endColumn" : 75 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 31, - "endColumn" : 125 - } - }, - "message" : { - "text" : "''" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 61, - "endColumn" : 75 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n[DOM text](3) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3f0d76a66d54a16:1", - "primaryLocationStartColumnFingerprint" : "28" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 90, - "startColumn" : 17, - "endColumn" : 27 - } - }, - "message" : { - "text" : "name.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - }, - "message" : { - "text" : "\"\" ... \"\"" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 91, - "startColumn" : 17, - "endColumn" : 28 - } - }, - "message" : { - "text" : "email.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - }, - "message" : { - "text" : "\"\" ... \"\"" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 92, - "startColumn" : 17, - "endColumn" : 31 - } - }, - "message" : { - "text" : "password.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - }, - "message" : { - "text" : "\"\" ... \"\"" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 90, - "startColumn" : 17, - "endColumn" : 27 - } - }, - "message" : { - "text" : "DOM text" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 91, - "startColumn" : 17, - "endColumn" : 28 - } - }, - "message" : { - "text" : "DOM text" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 92, - "startColumn" : 17, - "endColumn" : 31 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 109, - "startColumn" : 18, - "endColumn" : 109 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "68541733ad36bd2:1", - "primaryLocationStartColumnFingerprint" : "13" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 103, - "startColumn" : 13, - "endColumn" : 50 - } - }, - "message" : { - "text" : "$link.s ... \"alt\" )" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 103, - "startColumn" : 5, - "endColumn" : 50 - } - }, - "message" : { - "text" : "title" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 109, - "startColumn" : 33, - "endColumn" : 38 - } - }, - "message" : { - "text" : "title" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 109, - "startColumn" : 18, - "endColumn" : 109 - } - }, - "message" : { - "text" : "\"\"" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 103, - "startColumn" : 13, - "endColumn" : 50 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 61, - "startColumn" : 13, - "endColumn" : 90 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51698d300613832:1", - "primaryLocationStartColumnFingerprint" : "8" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 59, - "startColumn" : 16, - "endColumn" : 30 - } - }, - "message" : { - "text" : "tabTitle.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 59, - "startColumn" : 16, - "endColumn" : 53 - } - }, - "message" : { - "text" : "tabTitl ... Counter" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 59, - "startColumn" : 8, - "endColumn" : 53 - } - }, - "message" : { - "text" : "label" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 61, - "startColumn" : 83, - "endColumn" : 88 - } - }, - "message" : { - "text" : "label" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 61, - "startColumn" : 13, - "endColumn" : 90 - } - }, - "message" : { - "text" : "tabTemp ... label )" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 59, - "startColumn" : 16, - "endColumn" : 30 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 32, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 32 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 65, - "startColumn" : 17, - "endColumn" : 75 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dbf55bee3d3f647b:1", - "primaryLocationStartColumnFingerprint" : "13" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 62, - "startColumn" : 22, - "endColumn" : 38 - } - }, - "message" : { - "text" : "tabContent.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 62, - "startColumn" : 22, - "endColumn" : 75 - } - }, - "message" : { - "text" : "tabCont ... ntent.\"" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 62, - "startColumn" : 5, - "endColumn" : 75 - } - }, - "message" : { - "text" : "tabContentHtml" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 65, - "startColumn" : 46, - "endColumn" : 60 - } - }, - "message" : { - "text" : "tabContentHtml" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 65, - "startColumn" : 17, - "endColumn" : 75 - } - }, - "message" : { - "text" : "\"
\"" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 62, - "startColumn" : 22, - "endColumn" : 38 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "ruleIndex" : 33, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "index" : 33 - }, - "message" : { - "text" : "This string may still contain [ (capture group 1) and not --!> as a HTML comment end tag." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 3516, - "startColumn" : 30, - "endLine" : 3523, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "161aa20db18855a1:1", - "primaryLocationStartColumnFingerprint" : "26" - } - } ], - "newlineSequences" : [ "\r\n", "\n", "
", "
" ], - "columnKind" : "utf16CodeUnits", - "properties" : { - "semmle.formatSpecifier" : "2.1.0", - "semmle.sourceLanguage" : "javascript" - } - }, { - "tool" : { - "driver" : { - "name" : "LGTM.com", - "organization" : "Semmle", - "version" : "1.29.0-SNAPSHOT", - "rules" : [ { - "id" : "com.lgtm/python-queries:py/unnecessary-pass", - "name" : "com.lgtm/python-queries:py/unnecessary-pass", - "shortDescription" : { - "text" : "Unnecessary pass" - }, - "fullDescription" : { - "text" : "Unnecessary 'pass' statement" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "name" : "com.lgtm/python-queries:py/multiple-definition", - "shortDescription" : { - "text" : "Variable defined multiple times" - }, - "fullDescription" : { - "text" : "Assignment to a variable occurs multiple times without any intermediate use of that variable" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "name" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "shortDescription" : { - "text" : "First argument to super() is not enclosing class" - }, - "fullDescription" : { - "text" : "Calling super with something other than the enclosing class may cause incorrect object initialization." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "maintainability", "convention", "external/cwe/cwe-687" ], - "kind" : "problem", - "precision" : "high", - "severity" : "error", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/polluting-import", - "name" : "com.lgtm/python-queries:py/polluting-import", - "shortDescription" : { - "text" : "'import *' may pollute namespace" - }, - "fullDescription" : { - "text" : "Importing a module using 'import *' may unintentionally pollute the global namespace if the module does not define `__all__`" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "modularity" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "name" : "com.lgtm/python-queries:py/unreachable-statement", - "shortDescription" : { - "text" : "Unreachable code" - }, - "fullDescription" : { - "text" : "Code is unreachable" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/unused-import", - "name" : "com.lgtm/python-queries:py/unused-import", - "shortDescription" : { - "text" : "Unused import" - }, - "fullDescription" : { - "text" : "Import is not required as it is not used" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "name" : "com.lgtm/python-queries:py/catch-base-exception", - "shortDescription" : { - "text" : "Except block handles 'BaseException'" - }, - "fullDescription" : { - "text" : "Handling 'BaseException' means that system exits and keyboard interrupts may be mis-handled." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "reliability", "readability", "convention", "external/cwe/cwe-396" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "name" : "com.lgtm/python-queries:py/unused-local-variable", - "shortDescription" : { - "text" : "Unused local variable" - }, - "fullDescription" : { - "text" : "Local variable is defined but not used" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/conflicting-attributes", - "name" : "com.lgtm/python-queries:py/conflicting-attributes", - "shortDescription" : { - "text" : "Conflicting attributes in base classes" - }, - "fullDescription" : { - "text" : "When a class subclasses multiple base classes and more than one base class defines the same attribute, attribute overriding may result in unexpected behavior by instances of this class." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "maintainability", "modularity" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/missing-equals", - "name" : "com.lgtm/python-queries:py/missing-equals", - "shortDescription" : { - "text" : "`__eq__` not overridden when adding attributes" - }, - "fullDescription" : { - "text" : "When adding new attributes to instances of a class, equality for that class needs to be defined." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/import-and-import-from", - "name" : "com.lgtm/python-queries:py/import-and-import-from", - "shortDescription" : { - "text" : "Module is imported with 'import' and 'import from'" - }, - "fullDescription" : { - "text" : "A module is imported with the \"import\" and \"import from\" statements" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "name" : "com.lgtm/python-queries:py/stack-trace-exposure", - "shortDescription" : { - "text" : "Information exposure through an exception" - }, - "fullDescription" : { - "text" : "Leaking information about an exception, such as messages and stack traces, to an external user can expose implementation details that are useful to an attacker for developing a subsequent exploit." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-209", "external/cwe/cwe-497" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "5.4", - "severity" : "error" - } - }, { - "id" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "name" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "shortDescription" : { - "text" : "Incomplete URL substring sanitization" - }, - "fullDescription" : { - "text" : "Security checks on the substrings of an unparsed URL are often vulnerable to bypassing." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-20" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - } ] - } - }, - "versionControlProvenance" : [ { - "repositoryUri" : "https://github.com/treeio/treeio.git", - "revisionId" : "bae3115f4015aad2cbc5ab45572232ceec990495" - } ], - "artifacts" : [ { - "location" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - } - }, { - "location" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - } - }, { - "location" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - } - }, { - "location" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - } - }, { - "location" : { - "uri" : "treeio/core/administration/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - } - }, { - "location" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - } - }, { - "location" : { - "uri" : "treeio/identities/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - } - }, { - "location" : { - "uri" : "treeio/infrastructure/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - } - }, { - "location" : { - "uri" : "treeio/core/db/__init__.py", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - } - }, { - "location" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - } - }, { - "location" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - } - }, { - "location" : { - "uri" : "treeio/changes/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - } - }, { - "location" : { - "uri" : "treeio/core/ajax/converter.py", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - } - }, { - "location" : { - "uri" : "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - } - }, { - "location" : { - "uri" : "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - } - }, { - "location" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - } - }, { - "location" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - } - }, { - "location" : { - "uri" : "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - } - }, { - "location" : { - "uri" : "treeio/events/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - } - }, { - "location" : { - "uri" : "treeio/finance/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - } - }, { - "location" : { - "uri" : "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - } - }, { - "location" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - } - }, { - "location" : { - "uri" : "treeio/infrastructure/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - } - }, { - "location" : { - "uri" : "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - } - }, { - "location" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - } - }, { - "location" : { - "uri" : "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - } - }, { - "location" : { - "uri" : "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - } - }, { - "location" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - } - }, { - "location" : { - "uri" : "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - } - }, { - "location" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - } - }, { - "location" : { - "uri" : "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - } - }, { - "location" : { - "uri" : "treeio/account/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - } - }, { - "location" : { - "uri" : "treeio/account/cron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - } - }, { - "location" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - } - }, { - "location" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - } - }, { - "location" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - } - }, { - "location" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - } - }, { - "location" : { - "uri" : "treeio/core/auth.py", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - } - }, { - "location" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - } - }, { - "location" : { - "uri" : "treeio/core/dashboard/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - } - }, { - "location" : { - "uri" : "treeio/core/db/creation.py", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - } - }, { - "location" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - } - }, { - "location" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - } - }, { - "location" : { - "uri" : "treeio/core/management/commands/runcron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - } - }, { - "location" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - } - }, { - "location" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - } - }, { - "location" : { - "uri" : "treeio/core/rss.py", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - } - }, { - "location" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - } - }, { - "location" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - } - }, { - "location" : { - "uri" : "treeio/core/templatetags/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - } - }, { - "location" : { - "uri" : "treeio/core/trash/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - } - }, { - "location" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - } - }, { - "location" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - } - }, { - "location" : { - "uri" : "treeio/events/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 78 - } - }, { - "location" : { - "uri" : "treeio/events/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 79 - } - }, { - "location" : { - "uri" : "treeio/finance/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 80 - } - }, { - "location" : { - "uri" : "treeio/finance/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 81 - } - }, { - "location" : { - "uri" : "treeio/finance/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 82 - } - }, { - "location" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - } - }, { - "location" : { - "uri" : "treeio/identities/integration.py", - "uriBaseId" : "%SRCROOT%", - "index" : 84 - } - }, { - "location" : { - "uri" : "treeio/identities/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 85 - } - }, { - "location" : { - "uri" : "treeio/identities/objects.py", - "uriBaseId" : "%SRCROOT%", - "index" : 86 - } - }, { - "location" : { - "uri" : "treeio/messaging/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 87 - } - }, { - "location" : { - "uri" : "treeio/messaging/emails.py", - "uriBaseId" : "%SRCROOT%", - "index" : 88 - } - }, { - "location" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - } - }, { - "location" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - } - }, { - "location" : { - "uri" : "treeio/news/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 91 - } - }, { - "location" : { - "uri" : "treeio/projects/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 92 - } - }, { - "location" : { - "uri" : "treeio/projects/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 93 - } - }, { - "location" : { - "uri" : "treeio/reports/templatetags/reports.py", - "uriBaseId" : "%SRCROOT%", - "index" : 94 - } - }, { - "location" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - } - }, { - "location" : { - "uri" : "treeio/sales/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 96 - } - }, { - "location" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - } - }, { - "location" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - } - }, { - "location" : { - "uri" : "treeio/services/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 99 - } - }, { - "location" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - } - }, { - "location" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - } - }, { - "location" : { - "uri" : "treeio/core/api/utils.py", - "uriBaseId" : "%SRCROOT%", - "index" : 102 - } - }, { - "location" : { - "uri" : "treeio/projects/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 103 - } - }, { - "location" : { - "uri" : "treeio/core/sanitizer.py", - "uriBaseId" : "%SRCROOT%", - "index" : 104 - } - } ], - "results" : [ { - "ruleId" : "com.lgtm/python-queries:py/unnecessary-pass", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/python-queries:py/unnecessary-pass", - "index" : 0 - }, - "message" : { - "text" : "Unnecessary 'pass' statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 500, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d5a816bdc87f65a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'qry' is unnecessary as it is redefined [here](1) before this value is used.\nThis assignment to 'qry' is unnecessary as it is redefined [here](2) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 41, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "337db906fd5eb184:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 43, - "startColumn" : 21, - "endColumn" : 24 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 48, - "startColumn" : 21, - "endColumn" : 24 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'query' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 548, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38aaec6b42707061:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 566, - "startColumn" : 5, - "endColumn" : 10 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'query' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 550, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e72ed1bd661ad78:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 566, - "startColumn" : 5, - "endColumn" : 10 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'DEBUG' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 22, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dcbba315c4aab51c:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 23, - "endColumn" : 6 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be PageFolderHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 198, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7aac7a5b7522950e:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be PageHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 217, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "79b557212d64f987:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ContactSetupForm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 451, - "startColumn" : 9, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d154ffffebae57dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ContactFieldHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - }, - "region" : { - "startLine" : 31, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d65e22c97eb5048:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ItemFieldHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/infrastructure/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - }, - "region" : { - "startLine" : 40, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "977a5dfdd0933ae7:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ItemStatusHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/infrastructure/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - }, - "region" : { - "startLine" : 71, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f0a7fa61d6949e88:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/polluting-import", - "ruleIndex" : 3, - "rule" : { - "id" : "com.lgtm/python-queries:py/polluting-import", - "index" : 3 - }, - "message" : { - "text" : "Import pollutes the enclosing namespace, as the imported module [treeio.core.db.db](1) does not define '__all__'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/__init__.py", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - }, - "region" : { - "startLine" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "41e4e91ec32c2be4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - } - }, - "message" : { - "text" : "treeio.core.db.db" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 431, - "startColumn" : 9, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6d14fb4677e6ec83:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 42, - "startColumn" : 9, - "endLine" : 43, - "endColumn" : 115 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bef6ecccda4ea261:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - }, - "region" : { - "startLine" : 143, - "startColumn" : 9, - "endColumn" : 76 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e632f4f1c7640158:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 42, - "startColumn" : 9, - "endLine" : 43, - "endColumn" : 104 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "94f78beaa2ace32c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 103, - "startColumn" : 5, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3b66c4100f0951ca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 154, - "startColumn" : 5, - "endLine" : 160, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d07f19726c561ce:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 240, - "startColumn" : 5, - "endColumn" : 54 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f337a6930971846:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "986d788c12968405:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c914608bcb68ce9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/changes/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'OrderedDict' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/ajax/converter.py", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 11, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b8b1ad87d2ff3ac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b034:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0e0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'json' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 9, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eb4abfb2c59a7cfc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'translation' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 17, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8e463640caf410d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f4ce139bd8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "30e65cf5206cd372:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ee0db281ff199024:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'Object' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 11, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3b410771d02c216b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b027:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0de:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b02c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b02b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ce944290b73f1072:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f5b07440461a3c2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442435256c03aa9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/infrastructure/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b031:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34424981d1c0cb95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "986d788c12968405:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c914608bcb68ce9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442df3a93af9bfa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442791bb1889706:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 2, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 5, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b03a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b23ba1f4214afd9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0b048a89:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f4ce139bd8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "30e7ac09b405fbfc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "41485435967e8a7b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f5b07440461a3c2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442df3a93af9bfa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - }, - "region" : { - "startLine" : 260, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "31e3ddb9bca8c95d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/cron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - }, - "region" : { - "startLine" : 58, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2892b3e0c24cbd95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 156, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34ade055cf1ca73:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 165, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bab454236e485ac5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 182, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d92698814370b6d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 236, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "14e02c3970f95531:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 29, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b25d3e4e2a9429dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 107, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6b412f7bbcb0b95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 115, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c53d6b57b72912c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 133, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 139, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3d21259ab05ccf72:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 151, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c8b5bce6435eab45:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 214, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "45be99501d33d7fd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 73, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "52e875f74c9992d5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 80, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "89cc9c96f34983bd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 111, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a6e203f953c61c7e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 185, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "28e44790a5668ae0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 190, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "75a9d0a95eeef32:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 243, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "811bc4fc7e313ebd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 365, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f7c8df56ec226dbc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 240, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e6ab5a446e16dd93:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 289, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4629a791848c45b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 763, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9b5fc9375d29fca2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 776, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c53d6b57b72912c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 796, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "83c28c9ecbe543e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/ajax/converter.py", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 156, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ee2685e0dd8b915c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 198, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc3de37663611de5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 237, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c4fb9c3f0a0b2836:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 264, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "78cd4ab58152afd1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/auth.py", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - }, - "region" : { - "startLine" : 28, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f25d1d58a20c12d4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/auth.py", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - }, - "region" : { - "startLine" : 46, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f25d1d58a20c12d4:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 50, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "414f17ac8438289b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 78, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d184fdfe802a540:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 96, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8690259969c4c8d1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/dashboard/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - }, - "region" : { - "startLine" : 137, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "56099298deadfcf2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/creation.py", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 23, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "56cbdc15b9998de0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 251, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d7baf7b62571a9c5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 263, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b3a7758614a2ed8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 271, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3a34ec5d5c696f14:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 285, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "55cfe24c10b8268d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 128, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "94f83b98c7fb1dda:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 232, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a703f9c47dfb54c3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 314, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e3a8180017bdfc1d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 404, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "77a1d33f1c21af5f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 444, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a2b5328e4639f586:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 512, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c119c5118dd992cf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/runcron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - }, - "region" : { - "startLine" : 67, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d21852609d05c14:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 39, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "144a16144af3af60:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 80, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "84adaf5e05c06a13:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 92, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f590d8b93cc3435c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 104, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1613cbc206d2afae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 122, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6974d1703ad60ae4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 305, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bcc4d5d2c04093cc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 392, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e04a327cc02c031b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 425, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2ad3de1c212e25e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 462, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f12a3c421d8d343:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 90, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f962a2a42065ae19:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 99, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "989a0e961381a81:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 110, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ae2991e477facef:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 135, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "87b417ec2a4edeb0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 167, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9d7243019a9ec0cf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 155, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47638e17692c7de9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 160, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e0a91f765f5fc963:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 184, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6f5d7852428831e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 238, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98c587087550d03d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 333, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8571a9e44abdf687:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 336, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47638e17692c7de9:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 344, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc529fb79f64ce4b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 384, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ff8ba67dee7f162:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 534, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d4ca1f29a67898da:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 685, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "db8fa06ca75b2ce7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 737, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cb2648b3c107c6e2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 743, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "198e6288819700e9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 748, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f7ec80bfde0c2cc9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 862, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7c44fcbb4522f3a5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 907, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "64d7fafcb3bca8db:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 936, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "651a424cbec8d186:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 942, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa24b7f1271a4027:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 951, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a03c4ab6b9d896e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1002, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e39c47ea34327ad:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1181, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "81f45636cce68212:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1188, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "504f40f11df2a3b6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1201, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b328df2fbb0711eb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1370, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4bdd2e5a59294751:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1542, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f0649538db70fca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 100, - "startColumn" : 33, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e78907b7438e8324:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 107, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47a422a0b21ebd98:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 112, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5e19378f2a82396d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rss.py", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 94, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b9fd8a86c96dad0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 49, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9b3f52bfdc4e3141:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 51, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e4c2f6cfb46ca3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 68, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9b3f52bfdc4e3141:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 70, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e4c2f6cfb46ca3:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 44, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4ccf9c90f40cd907:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 53, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "58887756c7a6060:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 152, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6e045dbaec7b8c30:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 327, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 357, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "36ece0f6bb8ef105:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 402, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 463, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:3", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 525, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:4", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 573, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7fec538b51e3ff67:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 580, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7c760041a3be2819:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 586, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4ec3dd8944ecaa41:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 614, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "83c28c9ecbe543e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 622, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:5", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 876, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "677f643e395a32f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 80, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aed96671b45fa18a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/trash/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 33, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67d4a2e23fb83240:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/trash/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 44, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 62, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e65bca39a5c8a4cf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 171, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b4a1f61ad9ca844:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 178, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8b019906edcae7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 184, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fcc5776137ba1260:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 333, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a40b5eac2a6c6d83:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 577, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "985f81e01017ec99:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - }, - "region" : { - "startLine" : 92, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2ccd701e3d2f168:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - }, - "region" : { - "startLine" : 125, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "17d75a313c9b26ff:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - }, - "region" : { - "startLine" : 162, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a800cad1583cb797:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 78 - }, - "region" : { - "startLine" : 119, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6461b6d413ec1352:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 79 - }, - "region" : { - "startLine" : 187, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a25cb99b7015c47e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 80 - }, - "region" : { - "startLine" : 212, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "28f60cf0c9a0eb31:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 81 - }, - "region" : { - "startLine" : 102, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7ea6a3b785033b7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 82 - }, - "region" : { - "startLine" : 54, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "484f1e650998fb93:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 19, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ada7cb1e0b3d62d3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - }, - "region" : { - "startLine" : 545, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7a3f149799964bfe:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - }, - "region" : { - "startLine" : 584, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a722a9e705711ac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - }, - "region" : { - "startLine" : 1012, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2fdd552ab3369a15:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/integration.py", - "uriBaseId" : "%SRCROOT%", - "index" : 84 - }, - "region" : { - "startLine" : 177, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d737c2bd64ef51c0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/integration.py", - "uriBaseId" : "%SRCROOT%", - "index" : 84 - }, - "region" : { - "startLine" : 222, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "29c16372b823bd3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 85 - }, - "region" : { - "startLine" : 179, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6c3fd6fd62d761f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/objects.py", - "uriBaseId" : "%SRCROOT%", - "index" : 86 - }, - "region" : { - "startLine" : 76, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c183b72da411b2b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/objects.py", - "uriBaseId" : "%SRCROOT%", - "index" : 86 - }, - "region" : { - "startLine" : 97, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4c323d3a18944a68:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 87 - }, - "region" : { - "startLine" : 111, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a8550e7340f312c1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 87 - }, - "region" : { - "startLine" : 177, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "95a3c749eac11f03:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/emails.py", - "uriBaseId" : "%SRCROOT%", - "index" : 88 - }, - "region" : { - "startLine" : 32, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f42355e78470c774:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/emails.py", - "uriBaseId" : "%SRCROOT%", - "index" : 88 - }, - "region" : { - "startLine" : 45, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "36a4a5c93c32ef39:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 46, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b5c977af69dc696d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 54, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4f9bb42dd3abfa7a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 64, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8a6af68ceab4eb7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 74, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e0257be7907fb7a4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 82, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d7bff7835d34d63c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 89, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1d6e815ea4738e9c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 195, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c0d82879b58561eb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 219, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6dea4795b97393d4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 268, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b282db78669bf39:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 338, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "92fd8e07b42235d6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 342, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "211cf57b172b3d92:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 420, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b282db78669bf39:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 492, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "95a3c749eac11f03:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 691, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "42b0350cbed1c795:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 699, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fb27c7a2ace93b95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 708, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a5dde4d44a87af5d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 91 - }, - "region" : { - "startLine" : 39, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ddc4c4614f86b06:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 92 - }, - "region" : { - "startLine" : 19, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9a5b3e9a0fe66db8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 93 - }, - "region" : { - "startLine" : 39, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae60edfe222e275b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 93 - }, - "region" : { - "startLine" : 60, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae60edfe222f2750:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 29, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "15f09d78b1e5d187:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/templatetags/reports.py", - "uriBaseId" : "%SRCROOT%", - "index" : 94 - }, - "region" : { - "startLine" : 56, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1346b102bc01c79b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 248, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c64e0b9bb18ae5bb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 258, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98d6b0581c4efb4c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 266, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4272cdcf94b57749:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 275, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b9066916db660f16:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 284, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d608b6258e82d1f5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 293, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "29f4bab899879282:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 301, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "734c2457d6047d6f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 323, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ccb6a709dcc4e40c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 658, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "23150aca18bbf8bf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 776, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "28b2c28bdfea48d0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 787, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e6b6ab598d49e34:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 909, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b298a616c563702c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 920, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac668d5e73a868b4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 1000, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "170f03882d01fd28:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 1013, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3d4ee1cb0e406c22:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 96 - }, - "region" : { - "startLine" : 93, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98a36ac479066d6d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 96 - }, - "region" : { - "startLine" : 240, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eaa2bac5ddf7dc59:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 21, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a78d4dbf7cb92261:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 57, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 82, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 109, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:3", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 561, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "140a71e797006cf2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1160, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8f570f2cbb592cbb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1220, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f93dacb71d5e313f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1232, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "500d69f53271b1ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1241, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5a98c007805188ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1249, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "15a2c86c9ead1c58:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1257, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b80a0592f17c429d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1265, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "707d046d35dd6ff3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1273, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b02ef4947e73a8ed:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 226, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a76e3001527f6484:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 230, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5c79f9bf337171ee:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 240, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a76e3001527f6484:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 244, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "371488c3535acdc1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 250, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4c64263a280bbb5d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 254, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1926186369632fa3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 258, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab2e570e7cb2a2ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 78, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1edcf31275d94464:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 229, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d148d3429cdeb7c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 242, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a5c264487e43ac89:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 249, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "371488c3535acd98:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 255, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d37dc280f2024ba1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 99 - }, - "region" : { - "startLine" : 40, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae60edfe222e275b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 261, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f99222c3a51fbae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 288, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1a5b7d7045f50769:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 310, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b037293c431beb0c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 346, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f32e9d6b12cb1ba2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 363, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aed7e2b05091582:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 579, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "711ce4a34a0e60ba:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 583, - "startColumn" : 33, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3ee64eebc3cf395c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 593, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "da35acc2a2e50566:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 597, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "371488c3535acdc1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 604, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67ce6437bb233b5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 608, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8401c53955286c3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 612, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1823f94ec6dae24d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 947, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fda92497510560fe:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 956, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "949a5bf83bc22ed7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'request' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/utils.py", - "uriBaseId" : "%SRCROOT%", - "index" : 102 - }, - "region" : { - "startLine" : 271, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "af824a257a10910:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'cursor' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/creation.py", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 74, - "startColumn" : 13, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d18a825397cdc820:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'initial_db' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 20, - "startColumn" : 9, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5936187629651b2f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'db' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 28, - "startColumn" : 9, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "956a65aac87b5404:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'exit_code' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 88, - "startColumn" : 13, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c23b411726cb3cb9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'profile' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 383, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "162dbeaa20206db4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'task_time_slot' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 103 - }, - "region" : { - "startLine" : 1000, - "startColumn" : 13, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2758f94b9f18b78c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 586, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bda85ac655b296f3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 940, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4335185cfcdc7454:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 1065, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "88682b35a7669fee:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 468, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fe2da3e1da30eff7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 470, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "acb4b8b8be67ba96:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 473, - "startColumn" : 9, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "831dd3a4e02b1ff7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 658, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fe2da3e1da30eff7:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 660, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "acb4b8b8be67ba96:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 663, - "startColumn" : 9, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cdde85fbe701c6cb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 568, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66a23547dd5705fc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 602, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a620629e15bfe1ba:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/conflicting-attributes", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/python-queries:py/conflicting-attributes", - "index" : 8 - }, - "message" : { - "text" : "Base classes have conflicting values for attribute 'clear': Function clear and Builtin-method clear.\nBase classes have conflicting values for attribute 'get': Function get and Builtin-method get.\nBase classes have conflicting values for attribute 'has_key': Function has_key and Builtin-method has_key.\nBase classes have conflicting values for attribute 'items': Function items and Builtin-method items.\nBase classes have conflicting values for attribute 'iteritems': Function iteritems and Builtin-method iteritems.\nBase classes have conflicting values for attribute 'iterkeys': Function iterkeys and Builtin-method iterkeys.\nBase classes have conflicting values for attribute 'itervalues': Function itervalues and Builtin-method itervalues.\nBase classes have conflicting values for attribute 'pop': Function pop and Builtin-method pop.\nBase classes have conflicting values for attribute 'popitem': Function popitem and Builtin-method popitem.\nBase classes have conflicting values for attribute 'setdefault': Function setdefault and Builtin-method setdefault.\nBase classes have conflicting values for attribute 'update': Function update and Builtin-method update.\nBase classes have conflicting values for attribute 'values': Function values and Builtin-method values." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 27, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2335b88158aecda:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/missing-equals", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/python-queries:py/missing-equals", - "index" : 9 - }, - "message" : { - "text" : "The class 'DatabaseDict' does not override '__eq__', but adds the new attribute [store](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 27, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2335b88158aecda:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 50, - "startColumn" : 9, - "endColumn" : 19 - } - }, - "message" : { - "text" : "store" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/import-and-import-from", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/python-queries:py/import-and-import-from", - "index" : 10 - }, - "message" : { - "text" : "Module 'html5lib' is imported with both 'import' and 'import from'" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/sanitizer.py", - "uriBaseId" : "%SRCROOT%", - "index" : 104 - }, - "region" : { - "startLine" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51e646e3cea382ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/import-and-import-from", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/python-queries:py/import-and-import-from", - "index" : 10 - }, - "message" : { - "text" : "Module 'os' is imported with both 'import' and 'import from'" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 12, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "116aabf63cf0f10e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "index" : 11 - }, - "message" : { - "text" : "[Error information](1) may be exposed to an external user" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 395, - "startColumn" : 29, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fe0bcea7958de1b6:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 395, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 46, - "endColumn" : 65 - } - }, - "message" : { - "text" : "ControlFlowNode for str()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 395, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "Error information" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "index" : 11 - }, - "message" : { - "text" : "[Error information](1) may be exposed to an external user" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 429, - "startColumn" : 29, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e79fc11e0cc97a5e:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 429, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 46, - "endColumn" : 65 - } - }, - "message" : { - "text" : "ControlFlowNode for str()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 429, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "Error information" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "index" : 11 - }, - "message" : { - "text" : "[Error information](1) may be exposed to an external user" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 466, - "startColumn" : 29, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ff56eb44533e630c:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 466, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 46, - "endColumn" : 65 - } - }, - "message" : { - "text" : "ControlFlowNode for str()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 466, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "Error information" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "index" : 12 - }, - "message" : { - "text" : "'[gmail.com](1)' may be at an arbitrary position in the sanitized URL." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 12, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "46034441645cb7d5:1", - "primaryLocationStartColumnFingerprint" : "3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 12, - "endColumn" : 23 - } - }, - "message" : { - "text" : "gmail.com" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "index" : 12 - }, - "message" : { - "text" : "'[googlemail.com](1)' may be at an arbitrary position in the sanitized URL." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 37, - "endColumn" : 63 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "46034441645cb7d5:1", - "primaryLocationStartColumnFingerprint" : "28" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 37, - "endColumn" : 53 - } - }, - "message" : { - "text" : "googlemail.com" - } - } ] - } ], - "columnKind" : "unicodeCodePoints", - "properties" : { - "semmle.formatSpecifier" : "2.1.0", - "semmle.sourceLanguage" : "python" - } - } ] -} \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:6e9c03df2e58907c89d22f55decd04e1c39383c2195f40a1f0e0cc150bfa0039 +size 1058822 diff --git a/data/treeio/2022-02-25/results.sarif b/data/treeio/2022-02-25/results.sarif index 13d40d1..65b7c2b 100644 --- a/data/treeio/2022-02-25/results.sarif +++ b/data/treeio/2022-02-25/results.sarif @@ -1,30785 +1,3 @@ -{ - "$schema" : "https://json.schemastore.org/sarif-2.1.0.json", - "version" : "2.1.0", - "runs" : [ { - "tool" : { - "driver" : { - "name" : "LGTM.com", - "organization" : "Semmle", - "version" : "1.31.0-SNAPSHOT", - "rules" : [ { - "id" : "com.lgtm/python-queries:py/unnecessary-pass", - "name" : "com.lgtm/python-queries:py/unnecessary-pass", - "shortDescription" : { - "text" : "Unnecessary pass" - }, - "fullDescription" : { - "text" : "Unnecessary 'pass' statement" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "name" : "com.lgtm/python-queries:py/multiple-definition", - "shortDescription" : { - "text" : "Variable defined multiple times" - }, - "fullDescription" : { - "text" : "Assignment to a variable occurs multiple times without any intermediate use of that variable" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "name" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "shortDescription" : { - "text" : "First argument to super() is not enclosing class" - }, - "fullDescription" : { - "text" : "Calling super with something other than the enclosing class may cause incorrect object initialization." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "maintainability", "convention", "external/cwe/cwe-687" ], - "kind" : "problem", - "precision" : "high", - "severity" : "error", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/polluting-import", - "name" : "com.lgtm/python-queries:py/polluting-import", - "shortDescription" : { - "text" : "'import *' may pollute namespace" - }, - "fullDescription" : { - "text" : "Importing a module using 'import *' may unintentionally pollute the global namespace if the module does not define `__all__`" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "modularity" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "name" : "com.lgtm/python-queries:py/unreachable-statement", - "shortDescription" : { - "text" : "Unreachable code" - }, - "fullDescription" : { - "text" : "Code is unreachable" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/unused-import", - "name" : "com.lgtm/python-queries:py/unused-import", - "shortDescription" : { - "text" : "Unused import" - }, - "fullDescription" : { - "text" : "Import is not required as it is not used" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "name" : "com.lgtm/python-queries:py/catch-base-exception", - "shortDescription" : { - "text" : "Except block handles 'BaseException'" - }, - "fullDescription" : { - "text" : "Handling 'BaseException' means that system exits and keyboard interrupts may be mis-handled." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "reliability", "readability", "convention", "external/cwe/cwe-396" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "name" : "com.lgtm/python-queries:py/unused-local-variable", - "shortDescription" : { - "text" : "Unused local variable" - }, - "fullDescription" : { - "text" : "Local variable is defined but not used" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "useless-code", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/conflicting-attributes", - "name" : "com.lgtm/python-queries:py/conflicting-attributes", - "shortDescription" : { - "text" : "Conflicting attributes in base classes" - }, - "fullDescription" : { - "text" : "When a class subclasses multiple base classes and more than one base class defines the same attribute, attribute overriding may result in unexpected behavior by instances of this class." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "maintainability", "modularity" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/missing-equals", - "name" : "com.lgtm/python-queries:py/missing-equals", - "shortDescription" : { - "text" : "`__eq__` not overridden when adding attributes" - }, - "fullDescription" : { - "text" : "When adding new attributes to instances of a class, equality for that class needs to be defined." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning", - "sub-severity" : "high" - } - }, { - "id" : "com.lgtm/python-queries:py/import-and-import-from", - "name" : "com.lgtm/python-queries:py/import-and-import-from", - "shortDescription" : { - "text" : "Module is imported with 'import' and 'import from'" - }, - "fullDescription" : { - "text" : "A module is imported with the \"import\" and \"import from\" statements" - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation", - "sub-severity" : "low" - } - }, { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "name" : "com.lgtm/python-queries:py/stack-trace-exposure", - "shortDescription" : { - "text" : "Information exposure through an exception" - }, - "fullDescription" : { - "text" : "Leaking information about an exception, such as messages and stack traces, to an external user can expose implementation details that are useful to an attacker for developing a subsequent exploit." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-209", "external/cwe/cwe-497" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "5.4", - "severity" : "error" - } - }, { - "id" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "name" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "shortDescription" : { - "text" : "Incomplete URL substring sanitization" - }, - "fullDescription" : { - "text" : "Security checks on the substrings of an unparsed URL are often vulnerable to bypassing." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-20" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - } ] - } - }, - "versionControlProvenance" : [ { - "repositoryUri" : "https://github.com/treeio/treeio.git", - "revisionId" : "bae3115f4015aad2cbc5ab45572232ceec990495" - } ], - "artifacts" : [ { - "location" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - } - }, { - "location" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - } - }, { - "location" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - } - }, { - "location" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - } - }, { - "location" : { - "uri" : "treeio/core/administration/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - } - }, { - "location" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - } - }, { - "location" : { - "uri" : "treeio/identities/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - } - }, { - "location" : { - "uri" : "treeio/infrastructure/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - } - }, { - "location" : { - "uri" : "treeio/core/db/__init__.py", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - } - }, { - "location" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - } - }, { - "location" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - } - }, { - "location" : { - "uri" : "treeio/changes/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - } - }, { - "location" : { - "uri" : "treeio/core/ajax/converter.py", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - } - }, { - "location" : { - "uri" : "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - } - }, { - "location" : { - "uri" : "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - } - }, { - "location" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - } - }, { - "location" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - } - }, { - "location" : { - "uri" : "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - } - }, { - "location" : { - "uri" : "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - } - }, { - "location" : { - "uri" : "treeio/events/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - } - }, { - "location" : { - "uri" : "treeio/finance/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - } - }, { - "location" : { - "uri" : "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - } - }, { - "location" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - } - }, { - "location" : { - "uri" : "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - } - }, { - "location" : { - "uri" : "treeio/infrastructure/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - } - }, { - "location" : { - "uri" : "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - } - }, { - "location" : { - "uri" : "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - } - }, { - "location" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - } - }, { - "location" : { - "uri" : "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - } - }, { - "location" : { - "uri" : "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - } - }, { - "location" : { - "uri" : "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - } - }, { - "location" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - } - }, { - "location" : { - "uri" : "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - } - }, { - "location" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - } - }, { - "location" : { - "uri" : "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - } - }, { - "location" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - } - }, { - "location" : { - "uri" : "treeio/account/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - } - }, { - "location" : { - "uri" : "treeio/account/cron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - } - }, { - "location" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - } - }, { - "location" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - } - }, { - "location" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - } - }, { - "location" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - } - }, { - "location" : { - "uri" : "treeio/core/auth.py", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - } - }, { - "location" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - } - }, { - "location" : { - "uri" : "treeio/core/dashboard/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - } - }, { - "location" : { - "uri" : "treeio/core/db/creation.py", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - } - }, { - "location" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - } - }, { - "location" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - } - }, { - "location" : { - "uri" : "treeio/core/management/commands/runcron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - } - }, { - "location" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - } - }, { - "location" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - } - }, { - "location" : { - "uri" : "treeio/core/rss.py", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - } - }, { - "location" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - } - }, { - "location" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - } - }, { - "location" : { - "uri" : "treeio/core/templatetags/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - } - }, { - "location" : { - "uri" : "treeio/core/trash/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - } - }, { - "location" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - } - }, { - "location" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - } - }, { - "location" : { - "uri" : "treeio/events/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 78 - } - }, { - "location" : { - "uri" : "treeio/events/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 79 - } - }, { - "location" : { - "uri" : "treeio/finance/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 80 - } - }, { - "location" : { - "uri" : "treeio/finance/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 81 - } - }, { - "location" : { - "uri" : "treeio/finance/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 82 - } - }, { - "location" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - } - }, { - "location" : { - "uri" : "treeio/identities/integration.py", - "uriBaseId" : "%SRCROOT%", - "index" : 84 - } - }, { - "location" : { - "uri" : "treeio/identities/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 85 - } - }, { - "location" : { - "uri" : "treeio/identities/objects.py", - "uriBaseId" : "%SRCROOT%", - "index" : 86 - } - }, { - "location" : { - "uri" : "treeio/messaging/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 87 - } - }, { - "location" : { - "uri" : "treeio/messaging/emails.py", - "uriBaseId" : "%SRCROOT%", - "index" : 88 - } - }, { - "location" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - } - }, { - "location" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - } - }, { - "location" : { - "uri" : "treeio/news/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 91 - } - }, { - "location" : { - "uri" : "treeio/projects/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 92 - } - }, { - "location" : { - "uri" : "treeio/projects/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 93 - } - }, { - "location" : { - "uri" : "treeio/reports/templatetags/reports.py", - "uriBaseId" : "%SRCROOT%", - "index" : 94 - } - }, { - "location" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - } - }, { - "location" : { - "uri" : "treeio/sales/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 96 - } - }, { - "location" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - } - }, { - "location" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - } - }, { - "location" : { - "uri" : "treeio/services/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 99 - } - }, { - "location" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - } - }, { - "location" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - } - }, { - "location" : { - "uri" : "treeio/core/api/utils.py", - "uriBaseId" : "%SRCROOT%", - "index" : 102 - } - }, { - "location" : { - "uri" : "treeio/projects/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 103 - } - }, { - "location" : { - "uri" : "treeio/core/sanitizer.py", - "uriBaseId" : "%SRCROOT%", - "index" : 104 - } - } ], - "results" : [ { - "ruleId" : "com.lgtm/python-queries:py/unnecessary-pass", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/python-queries:py/unnecessary-pass", - "index" : 0 - }, - "message" : { - "text" : "Unnecessary 'pass' statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 500, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d5a816bdc87f65a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'qry' is unnecessary as it is redefined [here](1) before this value is used.\nThis assignment to 'qry' is unnecessary as it is redefined [here](2) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 41, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "337db906fd5eb184:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 43, - "startColumn" : 21, - "endColumn" : 24 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 48, - "startColumn" : 21, - "endColumn" : 24 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'query' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 548, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38aaec6b42707061:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 566, - "startColumn" : 5, - "endColumn" : 10 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'query' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 550, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e72ed1bd661ad78:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 566, - "startColumn" : 5, - "endColumn" : 10 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/python-queries:py/multiple-definition", - "index" : 1 - }, - "message" : { - "text" : "This assignment to 'DEBUG' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 22, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dcbba315c4aab51c:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 23, - "endColumn" : 6 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be PageFolderHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 198, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7aac7a5b7522950e:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be PageHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 217, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "79b557212d64f987:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ContactSetupForm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 451, - "startColumn" : 9, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d154ffffebae57dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ContactFieldHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - }, - "region" : { - "startLine" : 31, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d65e22c97eb5048:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ItemFieldHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/infrastructure/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - }, - "region" : { - "startLine" : 40, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "977a5dfdd0933ae7:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/python-queries:py/super-not-enclosing-class", - "index" : 2 - }, - "message" : { - "text" : "First argument to super() should be ItemStatusHandler." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/infrastructure/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - }, - "region" : { - "startLine" : 71, - "startColumn" : 25, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f0a7fa61d6949e88:1", - "primaryLocationStartColumnFingerprint" : "16" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/polluting-import", - "ruleIndex" : 3, - "rule" : { - "id" : "com.lgtm/python-queries:py/polluting-import", - "index" : 3 - }, - "message" : { - "text" : "Import pollutes the enclosing namespace, as the imported module [treeio.core.db.db](1) does not define '__all__'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/__init__.py", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - }, - "region" : { - "startLine" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "41e4e91ec32c2be4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - } - }, - "message" : { - "text" : "treeio.core.db.db" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 431, - "startColumn" : 9, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6d14fb4677e6ec83:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 42, - "startColumn" : 9, - "endLine" : 43, - "endColumn" : 115 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bef6ecccda4ea261:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - }, - "region" : { - "startLine" : 143, - "startColumn" : 9, - "endColumn" : 76 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e632f4f1c7640158:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 42, - "startColumn" : 9, - "endLine" : 43, - "endColumn" : 104 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "94f78beaa2ace32c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 103, - "startColumn" : 5, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3b66c4100f0951ca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 154, - "startColumn" : 5, - "endLine" : 160, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d07f19726c561ce:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/python-queries:py/unreachable-statement", - "index" : 4 - }, - "message" : { - "text" : "Unreachable statement." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 240, - "startColumn" : 5, - "endColumn" : 54 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f337a6930971846:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "986d788c12968405:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c914608bcb68ce9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/changes/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'OrderedDict' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/ajax/converter.py", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 11, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b8b1ad87d2ff3ac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b034:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0e0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'json' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 9, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eb4abfb2c59a7cfc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'translation' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 17, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8e463640caf410d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f4ce139bd8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "30e65cf5206cd372:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ee0db281ff199024:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'Object' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 11, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3b410771d02c216b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b027:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0de:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b02c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b02b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ce944290b73f1072:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f5b07440461a3c2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442435256c03aa9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/infrastructure/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b031:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34424981d1c0cb95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "986d788c12968405:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c914608bcb68ce9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442df3a93af9bfa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442791bb1889706:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 2, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 5, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021f20c7b03a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b23ba1f4214afd9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0b048a89:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f4ce139bd8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "30e7ac09b405fbfc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "41485435967e8a7b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f5b07440461a3c2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0001_initial.py", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'db' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 8, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3442df3a93af9bfa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'datetime' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 7, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-import", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-import", - "index" : 5 - }, - "message" : { - "text" : "Import of 'models' is not used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 10, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - }, - "region" : { - "startLine" : 260, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "31e3ddb9bca8c95d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/cron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - }, - "region" : { - "startLine" : 58, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2892b3e0c24cbd95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 156, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34ade055cf1ca73:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 165, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bab454236e485ac5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 182, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d92698814370b6d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 236, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "14e02c3970f95531:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 29, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b25d3e4e2a9429dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 107, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6b412f7bbcb0b95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 115, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c53d6b57b72912c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 133, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 139, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3d21259ab05ccf72:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 151, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c8b5bce6435eab45:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/account/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 214, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "45be99501d33d7fd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 73, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "52e875f74c9992d5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 80, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "89cc9c96f34983bd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 111, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a6e203f953c61c7e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 185, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "28e44790a5668ae0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 190, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "75a9d0a95eeef32:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 243, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "811bc4fc7e313ebd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 365, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f7c8df56ec226dbc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 240, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e6ab5a446e16dd93:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 289, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4629a791848c45b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 763, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9b5fc9375d29fca2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 776, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c53d6b57b72912c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/administration/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 796, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "83c28c9ecbe543e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/ajax/converter.py", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 156, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ee2685e0dd8b915c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 198, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc3de37663611de5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 237, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c4fb9c3f0a0b2836:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/doc.py", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 264, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "78cd4ab58152afd1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/auth.py", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - }, - "region" : { - "startLine" : 28, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f25d1d58a20c12d4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/auth.py", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - }, - "region" : { - "startLine" : 46, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f25d1d58a20c12d4:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 50, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "414f17ac8438289b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 78, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d184fdfe802a540:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 96, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8690259969c4c8d1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/dashboard/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - }, - "region" : { - "startLine" : 137, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "56099298deadfcf2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/creation.py", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 23, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "56cbdc15b9998de0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 251, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d7baf7b62571a9c5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 263, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b3a7758614a2ed8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 271, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3a34ec5d5c696f14:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 285, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "55cfe24c10b8268d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 128, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "94f83b98c7fb1dda:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 232, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a703f9c47dfb54c3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 314, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e3a8180017bdfc1d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 404, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "77a1d33f1c21af5f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 444, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a2b5328e4639f586:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 512, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c119c5118dd992cf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/runcron.py", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - }, - "region" : { - "startLine" : 67, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d21852609d05c14:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 39, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "144a16144af3af60:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 80, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "84adaf5e05c06a13:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 92, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f590d8b93cc3435c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 104, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1613cbc206d2afae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 122, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6974d1703ad60ae4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 305, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bcc4d5d2c04093cc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 392, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e04a327cc02c031b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 425, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2ad3de1c212e25e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 462, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9f12a3c421d8d343:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 90, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f962a2a42065ae19:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 99, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "989a0e961381a81:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 110, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ae2991e477facef:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 135, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "87b417ec2a4edeb0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 167, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9d7243019a9ec0cf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 155, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47638e17692c7de9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 160, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e0a91f765f5fc963:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 184, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6f5d7852428831e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 238, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98c587087550d03d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 333, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8571a9e44abdf687:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 336, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47638e17692c7de9:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 344, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc529fb79f64ce4b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 384, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ff8ba67dee7f162:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 534, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d4ca1f29a67898da:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 685, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "db8fa06ca75b2ce7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 737, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cb2648b3c107c6e2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 743, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "198e6288819700e9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 748, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f7ec80bfde0c2cc9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 862, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7c44fcbb4522f3a5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 907, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "64d7fafcb3bca8db:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 936, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "651a424cbec8d186:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 942, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa24b7f1271a4027:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 951, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a03c4ab6b9d896e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1002, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e39c47ea34327ad:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1181, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "81f45636cce68212:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1188, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "504f40f11df2a3b6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1201, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b328df2fbb0711eb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1370, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4bdd2e5a59294751:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1542, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f0649538db70fca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 100, - "startColumn" : 33, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e78907b7438e8324:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 107, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47a422a0b21ebd98:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 112, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5e19378f2a82396d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/rss.py", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 94, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b9fd8a86c96dad0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 49, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9b3f52bfdc4e3141:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 51, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e4c2f6cfb46ca3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 68, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9b3f52bfdc4e3141:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 70, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e4c2f6cfb46ca3:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 44, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4ccf9c90f40cd907:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/search/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 53, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "58887756c7a6060:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 152, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6e045dbaec7b8c30:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 327, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 357, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "36ece0f6bb8ef105:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 402, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 463, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:3", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 525, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:4", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 573, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7fec538b51e3ff67:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 580, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7c760041a3be2819:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 586, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4ec3dd8944ecaa41:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 614, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "83c28c9ecbe543e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 622, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66f787c7b210b99e:5", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/modules.py", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 876, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "677f643e395a32f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/templatetags/user.py", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 80, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aed96671b45fa18a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/trash/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 33, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67d4a2e23fb83240:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/trash/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 44, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 62, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e65bca39a5c8a4cf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 171, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b4a1f61ad9ca844:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 178, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8b019906edcae7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 184, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fcc5776137ba1260:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 333, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a40b5eac2a6c6d83:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 76 - }, - "region" : { - "startLine" : 577, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "985f81e01017ec99:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - }, - "region" : { - "startLine" : 92, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2ccd701e3d2f168:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - }, - "region" : { - "startLine" : 125, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "17d75a313c9b26ff:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/documents/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 77 - }, - "region" : { - "startLine" : 162, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a800cad1583cb797:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 78 - }, - "region" : { - "startLine" : 119, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6461b6d413ec1352:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/events/rendering.py", - "uriBaseId" : "%SRCROOT%", - "index" : 79 - }, - "region" : { - "startLine" : 187, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a25cb99b7015c47e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 80 - }, - "region" : { - "startLine" : 212, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "28f60cf0c9a0eb31:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 81 - }, - "region" : { - "startLine" : 102, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7ea6a3b785033b7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 82 - }, - "region" : { - "startLine" : 54, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "484f1e650998fb93:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 19, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ada7cb1e0b3d62d3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - }, - "region" : { - "startLine" : 545, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7a3f149799964bfe:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - }, - "region" : { - "startLine" : 584, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a722a9e705711ac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/finance/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 83 - }, - "region" : { - "startLine" : 1012, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2fdd552ab3369a15:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/integration.py", - "uriBaseId" : "%SRCROOT%", - "index" : 84 - }, - "region" : { - "startLine" : 177, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d737c2bd64ef51c0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/integration.py", - "uriBaseId" : "%SRCROOT%", - "index" : 84 - }, - "region" : { - "startLine" : 222, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "29c16372b823bd3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 85 - }, - "region" : { - "startLine" : 179, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6c3fd6fd62d761f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/objects.py", - "uriBaseId" : "%SRCROOT%", - "index" : 86 - }, - "region" : { - "startLine" : 76, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c183b72da411b2b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/identities/objects.py", - "uriBaseId" : "%SRCROOT%", - "index" : 86 - }, - "region" : { - "startLine" : 97, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4c323d3a18944a68:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 87 - }, - "region" : { - "startLine" : 111, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a8550e7340f312c1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 87 - }, - "region" : { - "startLine" : 177, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "95a3c749eac11f03:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/emails.py", - "uriBaseId" : "%SRCROOT%", - "index" : 88 - }, - "region" : { - "startLine" : 32, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f42355e78470c774:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/emails.py", - "uriBaseId" : "%SRCROOT%", - "index" : 88 - }, - "region" : { - "startLine" : 45, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "36a4a5c93c32ef39:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 46, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b5c977af69dc696d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 54, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4f9bb42dd3abfa7a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 64, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8a6af68ceab4eb7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 74, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e0257be7907fb7a4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 82, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d7bff7835d34d63c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 89, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1d6e815ea4738e9c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 195, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c0d82879b58561eb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 89 - }, - "region" : { - "startLine" : 219, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6dea4795b97393d4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 268, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b282db78669bf39:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 338, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "92fd8e07b42235d6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 342, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "211cf57b172b3d92:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 420, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b282db78669bf39:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 492, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "95a3c749eac11f03:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 691, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "42b0350cbed1c795:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 699, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fb27c7a2ace93b95:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/messaging/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 90 - }, - "region" : { - "startLine" : 708, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a5dde4d44a87af5d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/news/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 91 - }, - "region" : { - "startLine" : 39, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ddc4c4614f86b06:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/ajax.py", - "uriBaseId" : "%SRCROOT%", - "index" : 92 - }, - "region" : { - "startLine" : 19, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9a5b3e9a0fe66db8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 93 - }, - "region" : { - "startLine" : 39, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae60edfe222e275b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 93 - }, - "region" : { - "startLine" : 60, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae60edfe222f2750:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 29, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "15f09d78b1e5d187:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/reports/templatetags/reports.py", - "uriBaseId" : "%SRCROOT%", - "index" : 94 - }, - "region" : { - "startLine" : 56, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1346b102bc01c79b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 248, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c64e0b9bb18ae5bb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 258, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98d6b0581c4efb4c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 266, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4272cdcf94b57749:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 275, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b9066916db660f16:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 284, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d608b6258e82d1f5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 293, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "29f4bab899879282:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 301, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "734c2457d6047d6f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 323, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ccb6a709dcc4e40c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 658, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "23150aca18bbf8bf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 776, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "28b2c28bdfea48d0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 787, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e6b6ab598d49e34:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 909, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b298a616c563702c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 920, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac668d5e73a868b4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 1000, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "170f03882d01fd28:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 1013, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3d4ee1cb0e406c22:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 96 - }, - "region" : { - "startLine" : 93, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98a36ac479066d6d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 96 - }, - "region" : { - "startLine" : 240, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eaa2bac5ddf7dc59:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 21, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a78d4dbf7cb92261:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 57, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 82, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 109, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9e1fb519692d2bb0:3", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 561, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "140a71e797006cf2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1160, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8f570f2cbb592cbb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1220, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f93dacb71d5e313f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1232, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "500d69f53271b1ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1241, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5a98c007805188ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1249, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "15a2c86c9ead1c58:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1257, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b80a0592f17c429d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1265, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "707d046d35dd6ff3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 1273, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b02ef4947e73a8ed:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 226, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a76e3001527f6484:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 230, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5c79f9bf337171ee:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 240, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a76e3001527f6484:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 244, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "371488c3535acdc1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 250, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4c64263a280bbb5d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 254, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1926186369632fa3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/api/handlers.py", - "uriBaseId" : "%SRCROOT%", - "index" : 97 - }, - "region" : { - "startLine" : 258, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab2e570e7cb2a2ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 78, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1edcf31275d94464:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 229, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d148d3429cdeb7c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 242, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a5c264487e43ac89:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 249, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "371488c3535acd98:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 255, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d37dc280f2024ba1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/identities.py", - "uriBaseId" : "%SRCROOT%", - "index" : 99 - }, - "region" : { - "startLine" : 40, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae60edfe222e275b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 261, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f99222c3a51fbae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 288, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1a5b7d7045f50769:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 310, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b037293c431beb0c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 346, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f32e9d6b12cb1ba2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 100 - }, - "region" : { - "startLine" : 363, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aed7e2b05091582:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 579, - "startColumn" : 25, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "711ce4a34a0e60ba:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 583, - "startColumn" : 33, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3ee64eebc3cf395c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 593, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "da35acc2a2e50566:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 597, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "371488c3535acdc1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 604, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67ce6437bb233b5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 608, - "startColumn" : 29, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8401c53955286c3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 612, - "startColumn" : 17, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1823f94ec6dae24d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 947, - "startColumn" : 9, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fda92497510560fe:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/python-queries:py/catch-base-exception", - "index" : 6 - }, - "message" : { - "text" : "Except block directly handles BaseException." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 101 - }, - "region" : { - "startLine" : 956, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "949a5bf83bc22ed7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'request' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/api/utils.py", - "uriBaseId" : "%SRCROOT%", - "index" : 102 - }, - "region" : { - "startLine" : 271, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "af824a257a10910:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'cursor' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/creation.py", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 74, - "startColumn" : 13, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d18a825397cdc820:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'initial_db' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 20, - "startColumn" : 9, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5936187629651b2f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'db' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 28, - "startColumn" : 9, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "956a65aac87b5404:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'exit_code' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/management/commands/installdb.py", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 88, - "startColumn" : 13, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c23b411726cb3cb9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'profile' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/models.py", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 383, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "162dbeaa20206db4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'task_time_slot' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/projects/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 103 - }, - "region" : { - "startLine" : 1000, - "startColumn" : 13, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2758f94b9f18b78c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 586, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bda85ac655b296f3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 940, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4335185cfcdc7454:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 95 - }, - "region" : { - "startLine" : 1065, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "88682b35a7669fee:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 468, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fe2da3e1da30eff7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 470, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "acb4b8b8be67ba96:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 473, - "startColumn" : 9, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "831dd3a4e02b1ff7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 658, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fe2da3e1da30eff7:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 660, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "acb4b8b8be67ba96:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'query' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/sales/views.py", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 663, - "startColumn" : 9, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cdde85fbe701c6cb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 568, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66a23547dd5705fc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/python-queries:py/unused-local-variable", - "index" : 7 - }, - "message" : { - "text" : "The value assigned to local variable 'skip' is never used." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/services/forms.py", - "uriBaseId" : "%SRCROOT%", - "index" : 98 - }, - "region" : { - "startLine" : 602, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a620629e15bfe1ba:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/conflicting-attributes", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/python-queries:py/conflicting-attributes", - "index" : 8 - }, - "message" : { - "text" : "Base classes have conflicting values for attribute 'clear': Function clear and Builtin-method clear.\nBase classes have conflicting values for attribute 'get': Function get and Builtin-method get.\nBase classes have conflicting values for attribute 'has_key': Function has_key and Builtin-method has_key.\nBase classes have conflicting values for attribute 'items': Function items and Builtin-method items.\nBase classes have conflicting values for attribute 'iteritems': Function iteritems and Builtin-method iteritems.\nBase classes have conflicting values for attribute 'iterkeys': Function iterkeys and Builtin-method iterkeys.\nBase classes have conflicting values for attribute 'itervalues': Function itervalues and Builtin-method itervalues.\nBase classes have conflicting values for attribute 'pop': Function pop and Builtin-method pop.\nBase classes have conflicting values for attribute 'popitem': Function popitem and Builtin-method popitem.\nBase classes have conflicting values for attribute 'setdefault': Function setdefault and Builtin-method setdefault.\nBase classes have conflicting values for attribute 'update': Function update and Builtin-method update.\nBase classes have conflicting values for attribute 'values': Function values and Builtin-method values." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 27, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2335b88158aecda:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/missing-equals", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/python-queries:py/missing-equals", - "index" : 9 - }, - "message" : { - "text" : "The class 'DatabaseDict' does not override '__eq__', but adds the new attribute [store](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 27, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b2335b88158aecda:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/db/db.py", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 50, - "startColumn" : 9, - "endColumn" : 19 - } - }, - "message" : { - "text" : "store" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/import-and-import-from", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/python-queries:py/import-and-import-from", - "index" : 10 - }, - "message" : { - "text" : "Module 'html5lib' is imported with both 'import' and 'import from'" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/sanitizer.py", - "uriBaseId" : "%SRCROOT%", - "index" : 104 - }, - "region" : { - "startLine" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51e646e3cea382ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/import-and-import-from", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/python-queries:py/import-and-import-from", - "index" : 10 - }, - "message" : { - "text" : "Module 'os' is imported with both 'import' and 'import from'" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio_project/settings.py", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 12, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "116aabf63cf0f10e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "index" : 11 - }, - "message" : { - "text" : "[Error information](1) may be exposed to an external user" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 395, - "startColumn" : 29, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fe0bcea7958de1b6:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 395, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 46, - "endColumn" : 65 - } - }, - "message" : { - "text" : "ControlFlowNode for str()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 395, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 394, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "Error information" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "index" : 11 - }, - "message" : { - "text" : "[Error information](1) may be exposed to an external user" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 429, - "startColumn" : 29, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e79fc11e0cc97a5e:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 429, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 46, - "endColumn" : 65 - } - }, - "message" : { - "text" : "ControlFlowNode for str()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 429, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 428, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "Error information" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/python-queries:py/stack-trace-exposure", - "index" : 11 - }, - "message" : { - "text" : "[Error information](1) may be exposed to an external user" - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 466, - "startColumn" : 29, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ff56eb44533e630c:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 466, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "ControlFlowNode for Attribute()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 46, - "endColumn" : 65 - } - }, - "message" : { - "text" : "ControlFlowNode for str()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 38, - "endColumn" : 66 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 13, - "endColumn" : 67 - } - }, - "message" : { - "text" : "ControlFlowNode for Dict" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 466, - "startColumn" : 29, - "endColumn" : 33 - } - }, - "message" : { - "text" : "ControlFlowNode for data" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/middleware/chat.py", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 465, - "startColumn" : 50, - "endColumn" : 64 - } - }, - "message" : { - "text" : "Error information" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "index" : 12 - }, - "message" : { - "text" : "'[gmail.com](1)' may be at an arbitrary position in the sanitized URL." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 12, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "46034441645cb7d5:1", - "primaryLocationStartColumnFingerprint" : "3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 12, - "endColumn" : 23 - } - }, - "message" : { - "text" : "gmail.com" - } - } ] - }, { - "ruleId" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "index" : 12 - }, - "message" : { - "text" : "'[googlemail.com](1)' may be at an arbitrary position in the sanitized URL." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 37, - "endColumn" : 63 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "46034441645cb7d5:1", - "primaryLocationStartColumnFingerprint" : "28" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "treeio/core/mail.py", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 73, - "startColumn" : 37, - "endColumn" : 53 - } - }, - "message" : { - "text" : "googlemail.com" - } - } ] - } ], - "columnKind" : "unicodeCodePoints", - "properties" : { - "semmle.formatSpecifier" : "2.1.0", - "semmle.sourceLanguage" : "python" - } - }, { - "tool" : { - "driver" : { - "name" : "LGTM.com", - "organization" : "Semmle", - "version" : "1.31.0-SNAPSHOT", - "rules" : [ { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "name" : "com.lgtm/javascript-queries:js/unused-local-variable", - "shortDescription" : { - "text" : "Unused variable, import, function or class" - }, - "fullDescription" : { - "text" : "Unused variables, imports, functions or classes may be a symptom of a bug and should be examined carefully." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "name" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "shortDescription" : { - "text" : "Property access on null or undefined" - }, - "fullDescription" : { - "text" : "Trying to access a property of \"null\" or \"undefined\" will result in a runtime exception." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "correctness", "external/cwe/cwe-476" ], - "kind" : "problem", - "precision" : "high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "name" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "shortDescription" : { - "text" : "Duplicate character in character class" - }, - "fullDescription" : { - "text" : "If a character class in a regular expression contains the same character twice, this may indicate a bug." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "regular-expressions" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "name" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "shortDescription" : { - "text" : "Misleading indentation after control statement" - }, - "fullDescription" : { - "text" : "The body of a control statement should have appropriate indentation to clarify which statements it controls and which ones it does not control." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "statistical", "non-attributable", "external/cwe/cwe-483" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "name" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "shortDescription" : { - "text" : "Missing variable declaration" - }, - "fullDescription" : { - "text" : "If a variable is not declared as a local variable, it becomes a global variable by default, which may be unintentional and could lead to unexpected behavior." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "maintainability" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "name" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "shortDescription" : { - "text" : "Conflicting function declarations" - }, - "fullDescription" : { - "text" : "If two functions with the same name are declared in the same scope, one of the declarations overrides the other without warning. This makes the code hard to read and maintain, and may even lead to platform-dependent behavior." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "name" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "shortDescription" : { - "text" : "Conflicting variable initialization" - }, - "fullDescription" : { - "text" : "If a variable is declared and initialized twice inside the same variable declaration statement, the second initialization immediately overwrites the first one." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "name" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "shortDescription" : { - "text" : "Comparison between inconvertible types" - }, - "fullDescription" : { - "text" : "An equality comparison between two values that cannot be meaningfully converted to the same type will always yield 'false', and an inequality comparison will always yield 'true'." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-570", "external/cwe/cwe-571" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "name" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "shortDescription" : { - "text" : "Semicolon insertion" - }, - "fullDescription" : { - "text" : "Code that uses automatic semicolon insertion inconsistently is hard to read and maintain." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "language-features", "statistical", "non-attributable" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "name" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "shortDescription" : { - "text" : "Superfluous trailing arguments" - }, - "fullDescription" : { - "text" : "A function is invoked with extra trailing arguments that are ignored." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "correctness", "language-features", "external/cwe/cwe-685" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "name" : "com.lgtm/javascript-queries:js/overwritten-property", - "shortDescription" : { - "text" : "Overwritten property" - }, - "fullDescription" : { - "text" : "If an object literal has two properties with the same name, the second property overwrites the first one, which makes the code hard to understand and error-prone." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "name" : "com.lgtm/javascript-queries:js/eval-like-call", - "shortDescription" : { - "text" : "Call to eval-like DOM function" - }, - "fullDescription" : { - "text" : "DOM functions that act like 'eval' and execute strings as code are dangerous and impede program analysis and understanding. Consequently, they should not be used." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability", "external/cwe/cwe-676" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/use-before-declaration", - "name" : "com.lgtm/javascript-queries:js/use-before-declaration", - "shortDescription" : { - "text" : "Variable not declared before use" - }, - "fullDescription" : { - "text" : "Variables should be declared before their first use." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "readability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "name" : "com.lgtm/javascript-queries:js/trivial-conditional", - "shortDescription" : { - "text" : "Useless conditional" - }, - "fullDescription" : { - "text" : "If a conditional expression always evaluates to true or always evaluates to false, this suggests incomplete code or a logic error." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "external/cwe/cwe-570", "external/cwe/cwe-571" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-expression", - "name" : "com.lgtm/javascript-queries:js/useless-expression", - "shortDescription" : { - "text" : "Expression has no effect" - }, - "fullDescription" : { - "text" : "An expression that has no effect and is used in a void context is most likely redundant and may indicate a bug." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "correctness", "external/cwe/cwe-480", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "name" : "com.lgtm/javascript-queries:js/unreachable-statement", - "shortDescription" : { - "text" : "Unreachable statement" - }, - "fullDescription" : { - "text" : "Unreachable statements are often indicative of missing code or latent bugs and should be avoided." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "correctness", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/redundant-assignment", - "name" : "com.lgtm/javascript-queries:js/redundant-assignment", - "shortDescription" : { - "text" : "Self assignment" - }, - "fullDescription" : { - "text" : "Assigning a variable to itself has no effect." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "reliability", "correctness", "external/cwe/cwe-480", "external/cwe/cwe-561" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "name" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "shortDescription" : { - "text" : "Useless assignment to local variable" - }, - "fullDescription" : { - "text" : "An assignment to a local variable that is not used later on, or whose value is always overwritten, has no effect." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "external/cwe/cwe-563" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "name" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "shortDescription" : { - "text" : "Duplicate variable declaration" - }, - "fullDescription" : { - "text" : "A variable declaration statement that declares the same variable twice is confusing and hard to maintain." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "note" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "recommendation" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "name" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "shortDescription" : { - "text" : "Potentially unsafe external link" - }, - "fullDescription" : { - "text" : "External links that open in a new tab or window but do not specify link type 'noopener' or 'noreferrer' are a potential security risk." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "security", "external/cwe/cwe-200", "external/cwe/cwe-1022" ], - "kind" : "problem", - "precision" : "very-high", - "security-severity" : "6.5", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "name" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "shortDescription" : { - "text" : "Duplicate HTML element attributes" - }, - "fullDescription" : { - "text" : "Specifying the same attribute twice on the same HTML element is redundant and may indicate a copy-paste mistake." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability", "readability" ], - "kind" : "problem", - "precision" : "very-high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unknown-directive", - "name" : "com.lgtm/javascript-queries:js/unknown-directive", - "shortDescription" : { - "text" : "Unknown directive" - }, - "fullDescription" : { - "text" : "An unknown directive has no effect and may indicate a misspelling." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/redos", - "name" : "com.lgtm/javascript-queries:js/redos", - "shortDescription" : { - "text" : "Inefficient regular expression" - }, - "fullDescription" : { - "text" : "A regular expression that requires exponential time to match certain inputs can be a performance bottleneck, and may be vulnerable to denial-of-service attacks." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-1333", "external/cwe/cwe-730", "external/cwe/cwe-400" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.5", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "name" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "shortDescription" : { - "text" : "Incomplete string escaping or encoding" - }, - "fullDescription" : { - "text" : "A string transformer that does not replace or escape all occurrences of a meta-character may be ineffective." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-020", "external/cwe/cwe-080", "external/cwe/cwe-116" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "name" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "shortDescription" : { - "text" : "Useless assignment to property" - }, - "fullDescription" : { - "text" : "An assignment to a property whose value is always overwritten has no effect." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "maintainability" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "name" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "shortDescription" : { - "text" : "Incomplete regular expression for hostnames" - }, - "fullDescription" : { - "text" : "Matching a URL or hostname against a regular expression that contains an unescaped dot as part of the hostname might match more hostnames than expected." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "name" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "shortDescription" : { - "text" : "Loop iteration skipped due to shifting" - }, - "fullDescription" : { - "text" : "Removing elements from an array while iterating over it can cause the loop to skip over some elements, unless the loop index is decremented accordingly." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness" ], - "kind" : "problem", - "precision" : "high", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "name" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "shortDescription" : { - "text" : "Useless regular-expression character escape" - }, - "fullDescription" : { - "text" : "Prepending a backslash to an ordinary character in a string does not have any effect, and may make regular expressions constructed from this string behave unexpectedly." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-020" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "error" - } - }, { - "id" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "name" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "shortDescription" : { - "text" : "Unsafe jQuery plugin" - }, - "fullDescription" : { - "text" : "A jQuery plugin that unintentionally constructs HTML from some of its options may be unsafe to use for clients." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-079", "external/cwe/cwe-116", "frameworks/jquery" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "6.1", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "name" : "com.lgtm/javascript-queries:js/xss-through-dom", - "shortDescription" : { - "text" : "DOM text reinterpreted as HTML" - }, - "fullDescription" : { - "text" : "Reinterpreting text from the DOM as HTML can lead to a cross-site scripting vulnerability." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-079", "external/cwe/cwe-116" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "6.1", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "name" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "shortDescription" : { - "text" : "Incomplete multi-character sanitization" - }, - "fullDescription" : { - "text" : "A sanitizer that removes a sequence of characters may reintroduce the dangerous sequence." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "warning" - }, - "properties" : { - "tags" : [ "correctness", "security", "external/cwe/cwe-020", "external/cwe/cwe-080", "external/cwe/cwe-116" ], - "kind" : "problem", - "precision" : "high", - "security-severity" : "7.8", - "severity" : "warning" - } - }, { - "id" : "com.lgtm/javascript-queries:js/html-constructed-from-input", - "name" : "com.lgtm/javascript-queries:js/html-constructed-from-input", - "shortDescription" : { - "text" : "Unsafe HTML constructed from library input" - }, - "fullDescription" : { - "text" : "Using externally controlled strings to construct HTML might allow a malicious user to perform a cross-site scripting attack." - }, - "defaultConfiguration" : { - "enabled" : true, - "level" : "error" - }, - "properties" : { - "tags" : [ "security", "external/cwe/cwe-079", "external/cwe/cwe-116" ], - "kind" : "path-problem", - "precision" : "high", - "security-severity" : "6.1", - "severity" : "error" - } - } ] - } - }, - "versionControlProvenance" : [ { - "repositoryUri" : "https://github.com/treeio/treeio.git", - "revisionId" : "bae3115f4015aad2cbc5ab45572232ceec990495" - } ], - "artifacts" : [ { - "location" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - } - }, { - "location" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/accordion/hoverintent.html", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - } - }, { - "location" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/editable_selects.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - } - }, { - "location" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - } - }, { - "location" : { - "uri" : "templates/html/core/billing/upgrade.html", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - } - }, { - "location" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - } - }, { - "location" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/effect/easing.html", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - } - }, { - "location" : { - "uri" : "static/js/jquery.gritter.js", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - } - }, { - "location" : { - "uri" : "static/mobile/jquery.mobile.forms.ajaxform.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example1/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example2/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example3/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example4/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - } - }, { - "location" : { - "uri" : "static/js/colorbox/example5/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.resizable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.slider.js", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - } - }, { - "location" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - } - }, { - "location" : { - "uri" : "templates/html/core/administration/settings_view.html", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - } - }, { - "location" : { - "uri" : "templates/html/core/database_setup.html", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - } - }, { - "location" : { - "uri" : "static/js/jquery.ba-serializeobject.js", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - } - }, { - "location" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - } - } ], - "results" : [ { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable size." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1214, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e4aa64838c776437:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable file_uploader." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 847, - "startColumn" : 17, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2d69a7ff25c11755:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable file_uploader." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 869, - "startColumn" : 17, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2d69a7ff25c11755:2", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable target." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 932, - "startColumn" : 10, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f53acefb9d43eca1:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable args." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/accordion/hoverintent.html", - "uriBaseId" : "%SRCROOT%", - "index" : 2 - }, - "region" : { - "startLine" : 33, - "startColumn" : 5, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c700eb701f79d0d0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable divchart." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 94, - "startColumn" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ae729c9a998d74ca:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ArrayUtils." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 394, - "startColumn" : 9, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "141267900b8cd48b:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 119, - "startColumn" : 73, - "endColumn" : 74 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ff892574fa9e85eb:1", - "primaryLocationStartColumnFingerprint" : "70" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 292, - "startColumn" : 50, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f7867eeb9bf356b:1", - "primaryLocationStartColumnFingerprint" : "47" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 292, - "startColumn" : 53, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f7867eeb9bf356b:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable formObj." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 186, - "startColumn" : 6, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d0c61133d25c9f9:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable onClickData." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 187, - "startColumn" : 6, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "78c0f23e32d4f70a:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable each." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 6 - }, - "region" : { - "startLine" : 12, - "startColumn" : 33, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "484d0f12e577c58e:1", - "primaryLocationStartColumnFingerprint" : "31" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable tableElm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js", - "uriBaseId" : "%SRCROOT%", - "index" : 7 - }, - "region" : { - "startLine" : 5, - "startColumn" : 7, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67fade4c71484886:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable nodes." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 8 - }, - "region" : { - "startLine" : 53, - "startColumn" : 57, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "920d61c44c57d15d:1", - "primaryLocationStartColumnFingerprint" : "53" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable oed." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 42, - "startColumn" : 14, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dbb529ce80b3ce7f:1", - "primaryLocationStartColumnFingerprint" : "9" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable e." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 8, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ed." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 59, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "55" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ow." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 63, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "59" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable oh." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm", - "uriBaseId" : "%SRCROOT%", - "index" : 10 - }, - "region" : { - "startLine" : 83, - "startColumn" : 67, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "54494b422f84f2ca:1", - "primaryLocationStartColumnFingerprint" : "63" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable po." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 45, - "startColumn" : 67, - "endColumn" : 69 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ecd11012f8299dc9:1", - "primaryLocationStartColumnFingerprint" : "63" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable we." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 45, - "startColumn" : 81, - "endColumn" : 83 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ecd11012f8299dc9:1", - "primaryLocationStartColumnFingerprint" : "77" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable n." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 356, - "startColumn" : 11, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "37fd33b688fb439e:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable sp." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 369, - "startColumn" : 78, - "endColumn" : 80 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1ce831038edb00ca:1", - "primaryLocationStartColumnFingerprint" : "74" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable dom." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 12 - }, - "region" : { - "startLine" : 48, - "startColumn" : 9, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc9f7ffd8688f94d:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable found." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 13 - }, - "region" : { - "startLine" : 86, - "startColumn" : 46, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c6736d1d2a732a1:1", - "primaryLocationStartColumnFingerprint" : "40" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable LIST_PARAGRAPH." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 14 - }, - "region" : { - "startLine" : 147, - "startColumn" : 8, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "150e081cd6a801dd:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable mimeTypes." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 13, - "startColumn" : 55, - "endColumn" : 64 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "228c5616f3059e4b:1", - "primaryLocationStartColumnFingerprint" : "52" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable undef." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 36, - "startColumn" : 7, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f64d2aa9439670b5:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable baseUri." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 237, - "startColumn" : 43, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "116bc6f954a621d7:1", - "primaryLocationStartColumnFingerprint" : "39" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable iframe." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 333, - "startColumn" : 65, - "endColumn" : 71 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dfef88694be24fc:1", - "primaryLocationStartColumnFingerprint" : "61" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable params." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 334, - "startColumn" : 22, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa086219faff0715:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable item." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 334, - "startColumn" : 50, - "endColumn" : 54 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa086219faff0715:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable scale." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 438, - "startColumn" : 23, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7757018c26f91ee6:1", - "primaryLocationStartColumnFingerprint" : "19" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable size." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 438, - "startColumn" : 30, - "endColumn" : 34 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7757018c26f91ee6:1", - "primaryLocationStartColumnFingerprint" : "26" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable start." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 216, - "startColumn" : 10, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "84e36f7b13aa3825:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 54, - "startColumn" : 39, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a7e9ba6e835988d7:1", - "primaryLocationStartColumnFingerprint" : "35" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable elementId." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 54, - "startColumn" : 42, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a7e9ba6e835988d7:1", - "primaryLocationStartColumnFingerprint" : "38" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable wm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 41, - "startColumn" : 122, - "endColumn" : 124 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d662a2c9a98d47ba:1", - "primaryLocationStartColumnFingerprint" : "119" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 26, - "startColumn" : 18, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b6a4a5b32339264c:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable ed." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 20 - }, - "region" : { - "startLine" : 113, - "startColumn" : 21, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "422fc80096a3da42:1", - "primaryLocationStartColumnFingerprint" : "17" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable b." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 159, - "startColumn" : 75, - "endColumn" : 76 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ef75af65bf5b1c78:1", - "primaryLocationStartColumnFingerprint" : "73" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 159, - "startColumn" : 78, - "endColumn" : 79 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ef75af65bf5b1c78:1", - "primaryLocationStartColumnFingerprint" : "76" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable num." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 445, - "startColumn" : 72, - "endColumn" : 75 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2d12ef6a2a5dde9d:1", - "primaryLocationStartColumnFingerprint" : "70" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js", - "uriBaseId" : "%SRCROOT%", - "index" : 21 - }, - "region" : { - "startLine" : 656, - "startColumn" : 39, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e65ddcb55e24d98:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable f." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 22 - }, - "region" : { - "startLine" : 22, - "startColumn" : 15, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "778ea487f0bf76be:1", - "primaryLocationStartColumnFingerprint" : "10" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable newCell." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 257, - "startColumn" : 28, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3daaeb16d99d43a1:1", - "primaryLocationStartColumnFingerprint" : "22" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable pos." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 648, - "startColumn" : 8, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7105536cd5a32bd8:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable nativeSel." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 922, - "startColumn" : 50, - "endColumn" : 59 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d30633916718090:1", - "primaryLocationStartColumnFingerprint" : "44" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable inst." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 13, - "startColumn" : 6, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b275f430d62eff92:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable u." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 12, - "startColumn" : 47, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f0d8d29bfbda308f:1", - "primaryLocationStartColumnFingerprint" : "44" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable d." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 81, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bde41b602742921f:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable h." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 45, - "startColumn" : 40, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc336727502d4f1d:1", - "primaryLocationStartColumnFingerprint" : "36" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable d." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 45, - "startColumn" : 43, - "endColumn" : 44 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc336727502d4f1d:1", - "primaryLocationStartColumnFingerprint" : "39" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable bo." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 45, - "startColumn" : 100, - "endColumn" : 102 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fc336727502d4f1d:1", - "primaryLocationStartColumnFingerprint" : "96" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable h." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 155, - "startColumn" : 82, - "endColumn" : 83 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4d0c825a1c319a4a:1", - "primaryLocationStartColumnFingerprint" : "80" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable previewStylesName." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 16, - "startColumn" : 72, - "endColumn" : 89 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7cfb60bbc5a7b0f0:1", - "primaryLocationStartColumnFingerprint" : "69" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 473, - "startColumn" : 43, - "endColumn" : 45 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f45bfa37ee91587:1", - "primaryLocationStartColumnFingerprint" : "39" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable di." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 947, - "startColumn" : 83, - "endColumn" : 85 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e078421a122cd862:1", - "primaryLocationStartColumnFingerprint" : "79" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable r." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 986, - "startColumn" : 52, - "endColumn" : 53 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9734a17694d090c5:1", - "primaryLocationStartColumnFingerprint" : "48" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable mf." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 986, - "startColumn" : 55, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9734a17694d090c5:1", - "primaryLocationStartColumnFingerprint" : "51" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable me." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 986, - "startColumn" : 59, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9734a17694d090c5:1", - "primaryLocationStartColumnFingerprint" : "55" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable c." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1004, - "startColumn" : 61, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab531305754fa7d:1", - "primaryLocationStartColumnFingerprint" : "54" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable u." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1229, - "startColumn" : 41, - "endColumn" : 42 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "90dba1f2194b7e84:1", - "primaryLocationStartColumnFingerprint" : "35" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable action." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 5, - "startColumn" : 7, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "726aa09a4bdf5f87:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable tableElm." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js", - "uriBaseId" : "%SRCROOT%", - "index" : 30 - }, - "region" : { - "startLine" : 282, - "startColumn" : 6, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b9dc3fd58f360963:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable i." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 60, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "58" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalCoef." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 63, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "61" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalR." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 74, - "endColumn" : 80 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "72" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalG." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 82, - "endColumn" : 88 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "80" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable finalB." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 285, - "startColumn" : 90, - "endColumn" : 96 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4eaf7973caedbaa0:1", - "primaryLocationStartColumnFingerprint" : "88" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 40, - "startColumn" : 50, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1cddd2b2a508e919:1", - "primaryLocationStartColumnFingerprint" : "47" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 40, - "startColumn" : 53, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1cddd2b2a508e919:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 104, - "startColumn" : 50, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d07e21efc99b239:1", - "primaryLocationStartColumnFingerprint" : "47" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable cl." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 104, - "startColumn" : 53, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d07e21efc99b239:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable d." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/editable_selects.js", - "uriBaseId" : "%SRCROOT%", - "index" : 34 - }, - "region" : { - "startLine" : 15, - "startColumn" : 56, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b77e2861635b6d1c:1", - "primaryLocationStartColumnFingerprint" : "53" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable t." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - }, - "region" : { - "startLine" : 40, - "startColumn" : 6, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9c7465a02701e7f:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable msg." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 116, - "startColumn" : 40, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b0ff2a43d5728483:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 139, - "startColumn" : 7, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "db274c24b82b5c9e:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable v." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 359, - "startColumn" : 7, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e91ba3f29aff7cef:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable r." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 376, - "startColumn" : 8, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c5f3cb911f0f6a7a:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unused-local-variable", - "ruleIndex" : 0, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unused-local-variable", - "index" : 0 - }, - "message" : { - "text" : "Unused variable discount." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/billing/upgrade.html", - "uriBaseId" : "%SRCROOT%", - "index" : 38 - }, - "region" : { - "startLine" : 22, - "startColumn" : 8, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc048397449f8b22:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always null." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6775, - "startColumn" : 14, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c403855c0c024540:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always null." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6776, - "startColumn" : 11, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "458dc788ba168afb:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always undefined." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6874, - "startColumn" : 11, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cd82bca415cfe994:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "ruleIndex" : 1, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/property-access-on-non-object", - "index" : 1 - }, - "message" : { - "text" : "The base expression of this property access is always undefined." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6874, - "startColumn" : 18, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cd82bca415cfe994:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '|' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 722, - "startColumn" : 71, - "endColumn" : 72 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7820a043f81b48cd:1", - "primaryLocationStartColumnFingerprint" : "64" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 722, - "startColumn" : 75, - "endColumn" : 76 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character ''' is repeated [here](1) in the same character class.\nCharacter ''' is repeated [here](2) in the same character class.\nCharacter ''' is repeated [here](3) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 722, - "startColumn" : 72, - "endColumn" : 73 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7820a043f81b48cd:1", - "primaryLocationStartColumnFingerprint" : "65" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 722, - "startColumn" : 74, - "endColumn" : 75 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 722, - "startColumn" : 76, - "endColumn" : 77 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 722, - "startColumn" : 78, - "endColumn" : 79 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '^' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 21, - "startColumn" : 75, - "endColumn" : 76 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "97a00a111f3daf92:1", - "primaryLocationStartColumnFingerprint" : "71" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 21, - "startColumn" : 82, - "endColumn" : 83 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '0' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 21, - "startColumn" : 84, - "endColumn" : 85 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "97a00a111f3daf92:1", - "primaryLocationStartColumnFingerprint" : "80" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 21, - "startColumn" : 85, - "endColumn" : 86 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "ruleIndex" : 2, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/regex/duplicate-in-character-class", - "index" : 2 - }, - "message" : { - "text" : "Character '?' is repeated [here](1) in the same character class." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 22, - "startColumn" : 64, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc8b156ab239affb:1", - "primaryLocationStartColumnFingerprint" : "60" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 22, - "startColumn" : 68, - "endColumn" : 69 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "ruleIndex" : 3, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/misleading-indentation-after-control-statement", - "index" : 3 - }, - "message" : { - "text" : "The indentation of this statement suggests that it is controlled by [this statement](1), while in fact it is not." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 1029, - "startColumn" : 7, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f04cbd337ac9bfbc:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 54 - } - }, - "message" : { - "text" : "this statement" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable block is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4428, - "startColumn" : 46, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "78c92747c5241a4:1", - "primaryLocationStartColumnFingerprint" : "43" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4691, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4427c94bd81cb7be:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4702, - "startColumn" : 36, - "endColumn" : 39 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38a2514c26bef233:1", - "primaryLocationStartColumnFingerprint" : "32" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4815, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d8f8fd1a16867c31:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5044, - "startColumn" : 78, - "endColumn" : 81 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a91e649faec4df4:1", - "primaryLocationStartColumnFingerprint" : "74" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5281, - "startColumn" : 46, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d0d005c83a453178:1", - "primaryLocationStartColumnFingerprint" : "44" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5296, - "startColumn" : 43, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e04b46cd14b86291:1", - "primaryLocationStartColumnFingerprint" : "41" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable doc is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5309, - "startColumn" : 3, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "57ec503113d73654:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable module_name is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5318, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bf7f09e1e31e174c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable startPage is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5393, - "startColumn" : 6, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a2d0dbceb28391aa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable $curr is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5514, - "startColumn" : 8, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bcf5b94e316a657c:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable $curr is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5563, - "startColumn" : 11, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "81a1a2933193f241:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5769, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d7b6916976c4b8e5:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5777, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49383c972b3e0bf9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5803, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2be1ad83eb163ee6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5830, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3103c81bc9129fbe:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5840, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c2ceda17829c5d76:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5849, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e56a36282b972aca:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5853, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66394299481723dd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5871, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1a09f4967dba6e0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5880, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1c081664a322ac26:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5890, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7aaa73dbc725b33:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5900, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a58d6abaecfaf96:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable activeTab is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5930, - "startColumn" : 3, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1476ec56ed65667a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id_conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5931, - "startColumn" : 3, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1918da72a08e7911:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5939, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "64a913f10604fb01:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users_list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5962, - "startColumn" : 2, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "df42c27f5f0f36f7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5963, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f7e1b96b6a9863bd:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6002, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9898ec14746c31f1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6009, - "startColumn" : 53, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ff8c3e8ef4a7dc2d:1", - "primaryLocationStartColumnFingerprint" : "50" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable my_list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6022, - "startColumn" : 2, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6debca1d561747e3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6023, - "startColumn" : 2, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5f9508b941713bd0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6024, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2011b68fe49178df:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6031, - "startColumn" : 51, - "endColumn" : 61 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f6ec73b1738dc459:1", - "primaryLocationStartColumnFingerprint" : "49" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6032, - "startColumn" : 2, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5a9e09c6b5e1f1c7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6033, - "startColumn" : 2, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "61f64fcff078ce72:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable new_msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6051, - "startColumn" : 4, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "45f1fdd47dcc6a6f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6053, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c58b7c1206d1d5cc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable text is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6054, - "startColumn" : 42, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "538164ce26964ac3:1", - "primaryLocationStartColumnFingerprint" : "37" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable time is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6056, - "startColumn" : 5, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f65944e6a15ab05c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6057, - "startColumn" : 5, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "37f6d9ce35e16336:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable profile is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6058, - "startColumn" : 5, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bc3b8d6c14708a3b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6110, - "startColumn" : 5, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d081ba486c85fe6f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable dates is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7401, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "193a0b42ff4a6e3f:1", - "primaryLocationStartColumnFingerprint" : "8" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable maxEnd is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7579, - "startColumn" : 4, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "88f59ced044e4c04:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 43, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "74fc97b021e0d642:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable k is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 54, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a2a65d42c190e649:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 103, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "663942a79e643313:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 127, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8d6003dae0e756a6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 138, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "85182badd8e5b003:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 148, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7e5763e96502c833:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 153, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "663942a79e643313:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 170, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1a19482c6f9100ae:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 180, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "607f9c2d1417c6e8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 191, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d730c299ccf954f2:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable json is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 202, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c2020dcc657b5690:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable activeTab is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 246, - "startColumn" : 9, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1476ec56ed65667a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id_conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 247, - "startColumn" : 9, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8c8be1e5aabcb580:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable data is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 257, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9a1376a4b565a763:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 284, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "16249e66b88f8b98:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users_list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 292, - "startColumn" : 5, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "181a8509b076e9a4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable my_list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 348, - "startColumn" : 5, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b0a868e815fab58e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_conferences is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 349, - "startColumn" : 5, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d0f1235e877c8e0a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 356, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "497aa8d41af117d3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 367, - "startColumn" : 9, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "497aa8d41af117d3:2", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 381, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "39e0d3efff147851:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable conference is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 404, - "startColumn" : 13, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d982d2bd9182222f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 405, - "startColumn" : 13, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c6418d73cefd80ff:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable list_users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 406, - "startColumn" : 13, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d4c47cc31178f909:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable new_msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 449, - "startColumn" : 13, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "47961dc72f04dba7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable msg is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 451, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "58598925b13c03ab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable text is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 453, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7273eda7ca5103:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable time is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 455, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7c33fb772328b323:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable user is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 456, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "52c0ed4934497a23:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable profile is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 457, - "startColumn" : 21, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ed698cc92702f374:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable users is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 525, - "startColumn" : 17, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "17f1e32305593c69:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable block is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 84, - "startColumn" : 17, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1cee52bd142a13f7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable popup is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 509, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3fc6e74005b88f10:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable href is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 511, - "startColumn" : 21, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "adc85f01288fbc56:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 529, - "startColumn" : 35, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "19d027d56fa9bea4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 542, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bf9951bf8dec09e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable clean_href is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 710, - "startColumn" : 17, - "endColumn" : 27 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "25977bb9ef0ccc5f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 711, - "startColumn" : 17, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3dac155684cd786e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 984, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5670a4b253407e35:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1364, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9361c4626cbb4f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable url is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1384, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d301dbea9addc1b4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable doc is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1402, - "startColumn" : 7, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e60aef128689217c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable module_name is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1419, - "startColumn" : 7, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b4a64628090840cb:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable ctx is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/effect/easing.html", - "uriBaseId" : "%SRCROOT%", - "index" : 43 - }, - "region" : { - "startLine" : 39, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a07945efaca6ae68:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable dates is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 119, - "startColumn" : 13, - "endColumn" : 18 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "90fda3155727d343:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable maxEnd is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 419, - "startColumn" : 31, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "485eff08b93cb4fa:1", - "primaryLocationStartColumnFingerprint" : "27" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable fade_out_speed is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.gritter.js", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 198, - "startColumn" : 5, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2064577c40c02323:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable opt is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.gritter.js", - "uriBaseId" : "%SRCROOT%", - "index" : 44 - }, - "region" : { - "startLine" : 303, - "startColumn" : 8, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "784bef7d950313c5:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable n is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 9 - }, - "region" : { - "startLine" : 108, - "startColumn" : 6, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a38329befee6c667:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable rng is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 125, - "startColumn" : 6, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab19798d77997cab:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable ca is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 52, - "startColumn" : 3, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "12c4039446d39fa3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable rs is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js", - "uriBaseId" : "%SRCROOT%", - "index" : 19 - }, - "region" : { - "startLine" : 53, - "startColumn" : 3, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c685972c7a3f39d7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable e is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 45 - }, - "region" : { - "startLine" : 44, - "startColumn" : 9, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "409126bd0c8f05a4:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable row is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 217, - "startColumn" : 4, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6c345691fc9b85:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable pos is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 284, - "startColumn" : 5, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f9ca2ad2eda97e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable i is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 601, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e455177f1d1b6d71:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable y is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 703, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8ffd1021cfafb5bb:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable x is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 713, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "98aac13df7750a32:1", - "primaryLocationStartColumnFingerprint" : "5" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable bordercolor is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 32, - "startColumn" : 2, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "df12a1df051cb1d0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable bgcolor is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 33, - "startColumn" : 2, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "96551264e0f4379a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable id is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 35, - "startColumn" : 2, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8faab0a4c7c85e4e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable summary is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 36, - "startColumn" : 2, - "endColumn" : 9 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eaf098fba5f67c3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable style is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 37, - "startColumn" : 2, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1e51806a08270dd0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable dir is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 38, - "startColumn" : 2, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ec293e7f95d7066:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable lang is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 39, - "startColumn" : 2, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "20631c08501475e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable background is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 40, - "startColumn" : 2, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "27127f8932d9b1d9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable st is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 334, - "startColumn" : 3, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1d8849d425f26d37:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable n is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 47 - }, - "region" : { - "startLine" : 76, - "startColumn" : 4, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac9e2d6f1635d803:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable node is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 26 - }, - "region" : { - "startLine" : 65, - "startColumn" : 13, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f625362a9c54f57:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable className is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js", - "uriBaseId" : "%SRCROOT%", - "index" : 48 - }, - "region" : { - "startLine" : 38, - "startColumn" : 2, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ff2e19c2ebb260:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable elm is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 186, - "startColumn" : 2, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "898ccffe9a740246:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable previewStyles is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 18, - "startColumn" : 3, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e7e60f2409ea3054:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable v is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js", - "uriBaseId" : "%SRCROOT%", - "index" : 29 - }, - "region" : { - "startLine" : 9, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e033a9e90b148d00:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable col is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 75, - "startColumn" : 3, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51d3c975c932659f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 164, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e1fd9bf7427320c4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 165, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f0d59996dc1fef0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 166, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5ac3e8b39a4ceaac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 182, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "12412259f5b9b9f6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 183, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ab1116d578a397b7:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 184, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b7bc43cdb1f9b246:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable e is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 19, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2cf9cae0fd87a27:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable e is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 23, - "startColumn" : 7, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a7d9413a462cff8c:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable label is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 16, - "startColumn" : 6, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7b209ff5e4f061ac:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 152, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e1fd9bf7427320c4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 153, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3f0d59996dc1fef0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 154, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5ac3e8b39a4ceaac:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable r is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 170, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "12412259f5b9b9f6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable g is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 171, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f5c43715fc12e9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable b is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js", - "uriBaseId" : "%SRCROOT%", - "index" : 49 - }, - "region" : { - "startLine" : 172, - "startColumn" : 3, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "66628a69558c37a3:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable message is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 123, - "startColumn" : 6, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f06752d4a15b3872:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "ruleIndex" : 4, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/missing-variable-declaration", - "index" : 4 - }, - "message" : { - "text" : "Variable $this is used like a local variable, but is missing a declaration." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.forms.ajaxform.js", - "uriBaseId" : "%SRCROOT%", - "index" : 50 - }, - "region" : { - "startLine" : 28, - "startColumn" : 3, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5d0a80ca319be952:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "ruleIndex" : 5, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/function-declaration-conflict", - "index" : 5 - }, - "message" : { - "text" : "Declaration of function updateColor conflicts with [another declaration](1) in the same scope." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1190, - "startColumn" : 14, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4f357a08663f0a6:1", - "primaryLocationStartColumnFingerprint" : "9" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1204, - "startColumn" : 14, - "endColumn" : 25 - } - }, - "message" : { - "text" : "another declaration" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of g overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 179, - "startColumn" : 3, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4742898c4661356e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 175, - "startColumn" : 7, - "endColumn" : 18 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of l overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 499, - "startColumn" : 6, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b23ac590b00cd4d0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 486, - "startColumn" : 10, - "endColumn" : 26 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of t overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3976, - "startColumn" : 4, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8fabb31907705727:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3973, - "startColumn" : 4, - "endColumn" : 23 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of a overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5020, - "startColumn" : 5, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6cc3cec18ac8614b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5018, - "startColumn" : 9, - "endColumn" : 35 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of c overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6822, - "startColumn" : 5, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9055c70b63a7fac:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6821, - "startColumn" : 9, - "endColumn" : 17 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of g overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7547, - "startColumn" : 4, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8666fc427bb56b0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7545, - "startColumn" : 4, - "endColumn" : 22 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of d overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bce826c5bf2ecd5d:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of d overwrites [an earlier initialization](1).\nThis initialization of d overwrites [an earlier initialization](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e95a2989033b7b9f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "an earlier initialization" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of d overwrites [an earlier initialization](1).\nThis initialization of d overwrites [an earlier initialization](2).\nThis initialization of d overwrites [an earlier initialization](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7801, - "startColumn" : 3, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e59bc66258af358:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "an earlier initialization" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "an earlier initialization" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "ruleIndex" : 6, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/variable-initialization-conflict", - "index" : 6 - }, - "message" : { - "text" : "This initialization of c overwrites [an earlier initialization](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8096, - "startColumn" : 3, - "endColumn" : 277 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b98dd98aca26dcb3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8095, - "startColumn" : 7, - "endColumn" : 15 - } - }, - "message" : { - "text" : "an earlier initialization" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "index" : 7 - }, - "message" : { - "text" : "This expression is of type boolean, but it is compared to [an expression](1) of type string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4661, - "startColumn" : 46, - "endColumn" : 55 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a3b7077f6b8299b:1", - "primaryLocationStartColumnFingerprint" : "41" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4661, - "startColumn" : 59, - "endColumn" : 61 - } - }, - "message" : { - "text" : "an expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "ruleIndex" : 7, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/comparison-between-incompatible-types", - "index" : 7 - }, - "message" : { - "text" : "This expression is of type boolean, but it is compared to [an expression](1) of type string." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 480, - "startColumn" : 17, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "37d40017f9326517:1", - "primaryLocationStartColumnFingerprint" : "4" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 480, - "startColumn" : 36, - "endColumn" : 38 - } - }, - "message" : { - "text" : "an expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 161, - "startColumn" : 3, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "71e2b156aeeadbfb:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 146, - "startColumn" : 2, - "endLine" : 162, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 900, - "startColumn" : 8, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7230ea0b1586f248:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 845, - "startColumn" : 14, - "endLine" : 903, - "endColumn" : 6 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1211, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1dc65858be62e39:1", - "primaryLocationStartColumnFingerprint" : "-3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1170, - "startColumn" : 3, - "endLine" : 1212, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1277, - "startColumn" : 4, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "50db321af5bb0f46:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1233, - "startColumn" : 3, - "endLine" : 1278, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (91% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1294, - "startColumn" : 17, - "endColumn" : 28 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "58d027ffeaef2c75:1", - "primaryLocationStartColumnFingerprint" : "13" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1279, - "startColumn" : 3, - "endLine" : 1295, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1518, - "startColumn" : 5, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1ff634d92cda0c18:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1486, - "startColumn" : 4, - "endLine" : 1519, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1599, - "startColumn" : 4, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3451170edd88a4a3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1581, - "startColumn" : 8, - "endLine" : 1600, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1638, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "56a07c4357359f5:1", - "primaryLocationStartColumnFingerprint" : "-3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1601, - "startColumn" : 8, - "endLine" : 1639, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1780, - "startColumn" : 3, - "endColumn" : 7 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f46f2febe9501e48:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 185, - "startColumn" : 2, - "endLine" : 1781, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1921, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c1b7f79c8e2af4a:1", - "primaryLocationStartColumnFingerprint" : "-2" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 79, - "startColumn" : 2, - "endLine" : 4378, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2642, - "startColumn" : 4, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ecde08c7b3974478:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2628, - "startColumn" : 9, - "endLine" : 2643, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2677, - "endColumn" : 71 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ea34f345a5e33d43:1", - "primaryLocationStartColumnFingerprint" : "-6" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2656, - "startColumn" : 10, - "endLine" : 2679, - "endColumn" : 6 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3237, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1f1d09e36ae1ee93:1", - "primaryLocationStartColumnFingerprint" : "-2" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 79, - "startColumn" : 2, - "endLine" : 4378, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3414, - "startColumn" : 4, - "endColumn" : 31 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8fa50a4ff8974236:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3395, - "startColumn" : 9, - "endLine" : 3415, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3493, - "startColumn" : 4, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38fd10595f893b74:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3477, - "startColumn" : 12, - "endLine" : 3494, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3801, - "startColumn" : 4, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5291e15953026b0f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3766, - "startColumn" : 11, - "endLine" : 3802, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3851, - "startColumn" : 4, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b1239fb56162e328:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3829, - "startColumn" : 15, - "endLine" : 3852, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4241, - "startColumn" : 5, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1f668c431679f521:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4220, - "startColumn" : 9, - "endLine" : 4242, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4339, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e05e00f7a9576ecb:1", - "primaryLocationStartColumnFingerprint" : "-6" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4272, - "startColumn" : 19, - "endLine" : 4343, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4377, - "endColumn" : 3 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "92c026a48c751114:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 79, - "startColumn" : 2, - "endLine" : 4378, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4463, - "startColumn" : 6, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6c9951147bde3fb4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4453, - "startColumn" : 16, - "endLine" : 4502, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4473, - "startColumn" : 5, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ccfdc9fc88e84256:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4453, - "startColumn" : 16, - "endLine" : 4502, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4500, - "startColumn" : 4, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e3e93a785fce4495:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4453, - "startColumn" : 16, - "endLine" : 4502, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (91% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4560, - "startColumn" : 3, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bfc4e2de78644b7e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4548, - "startColumn" : 12, - "endLine" : 4561, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4601, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6bf57310a792cd6:1", - "primaryLocationStartColumnFingerprint" : "-2" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4583, - "startColumn" : 26, - "endLine" : 4602, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4724, - "startColumn" : 4, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "21839ccbd6c29a09:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4678, - "startColumn" : 25, - "endLine" : 4726, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4823, - "startColumn" : 5, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a50ba4d65b113944:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4768, - "startColumn" : 56, - "endLine" : 4824, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (91% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5320, - "startColumn" : 3, - "endColumn" : 60 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c16e23435ec956:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5308, - "startColumn" : 26, - "endLine" : 5321, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5321, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bf681ee083f4b6cb:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5269, - "startColumn" : 3, - "endLine" : 5322, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6372, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5db986aa6069fb8:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6361, - "startColumn" : 10, - "endLine" : 6373, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6433, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f83b736cef08120b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6422, - "startColumn" : 10, - "endLine" : 6434, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6594, - "startColumn" : 5, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "29cf1c60115c11f4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6547, - "startColumn" : 81, - "endLine" : 6596, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (98% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6598, - "endColumn" : 3 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "21a9a068d34b2852:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6251, - "startColumn" : 2, - "endLine" : 6599, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6745, - "startColumn" : 33, - "endColumn" : 67 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3b1671f80a1b43b:1", - "primaryLocationStartColumnFingerprint" : "31" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6600, - "startColumn" : 2, - "endLine" : 6746, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7092, - "startColumn" : 4, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6fd006a7c10e2069:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7073, - "startColumn" : 16, - "endLine" : 7093, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7113, - "startColumn" : 5, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ede705f5e52d0c2c:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7094, - "startColumn" : 11, - "endLine" : 7145, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7136, - "startColumn" : 5, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "125851aa52e537ce:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7094, - "startColumn" : 11, - "endLine" : 7145, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7144, - "startColumn" : 4, - "endColumn" : 40 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f284d80973fdd4ca:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7094, - "startColumn" : 11, - "endLine" : 7145, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (98% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7288, - "endColumn" : 3 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5e4fce4731339e:1", - "primaryLocationStartColumnFingerprint" : "-1" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7003, - "startColumn" : 2, - "endLine" : 7289, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7849, - "startColumn" : 2, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e7e47b91f8062967:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7824, - "startColumn" : 19, - "endLine" : 7850, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7967, - "startColumn" : 3, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac52d21dc1c61c44:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7933, - "startColumn" : 16, - "endLine" : 7968, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8105, - "startColumn" : 3, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ccf245bfd51a9a53:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8094, - "startColumn" : 15, - "endLine" : 8106, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8165, - "startColumn" : 3, - "endColumn" : 12 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b9427631c26bbc9a:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8136, - "startColumn" : 11, - "endLine" : 8166, - "endColumn" : 3 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 332, - "startColumn" : 17, - "endColumn" : 90 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cb6902bfd536a4c0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 279, - "startColumn" : 29, - "endLine" : 342, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 351, - "startColumn" : 9, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4b365f558148d2b4:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 344, - "startColumn" : 35, - "endLine" : 441, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 446, - "startColumn" : 5, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "abf989a43fcf10f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 445, - "startColumn" : 27, - "endLine" : 482, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example1/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example1/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 51 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example2/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example2/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 52 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example3/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example3/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 53 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example4/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example4/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 54 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (92% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example5/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 34, - "startColumn" : 5, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2f6556480542c464:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/colorbox/example5/index.html", - "uriBaseId" : "%SRCROOT%", - "index" : 55 - }, - "region" : { - "startLine" : 15, - "startColumn" : 22, - "endLine" : 42, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (97% of all statements in [the enclosing script](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1178, - "endColumn" : 77 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b582ec2c4c85ab9:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1, - "endLine" : 1299, - "endColumn" : 5 - } - }, - "message" : { - "text" : "the enclosing script" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 188, - "startColumn" : 11, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d3a282030679f395:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 131, - "startColumn" : 20, - "endLine" : 214, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (95% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 208, - "startColumn" : 9, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3dc3cbf4588667ec:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 131, - "startColumn" : 20, - "endLine" : 214, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (93% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 561, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "afc4fd460d3374eb:1", - "primaryLocationStartColumnFingerprint" : "-12" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 506, - "startColumn" : 30, - "endLine" : 574, - "endColumn" : 6 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 670, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5b450216c6aa156c:1", - "primaryLocationStartColumnFingerprint" : "-16" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 651, - "startColumn" : 27, - "endLine" : 724, - "endColumn" : 14 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (94% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 677, - "startColumn" : 17, - "endColumn" : 80 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2c89582f1b981811:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 651, - "startColumn" : 27, - "endLine" : 724, - "endColumn" : 14 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 135, - "startColumn" : 4, - "endColumn" : 58 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "eb138b986e7ee446:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 132, - "startColumn" : 9, - "endLine" : 147, - "endColumn" : 10 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (90% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 423, - "startColumn" : 6, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6746b6523a43e199:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ganttView.js", - "uriBaseId" : "%SRCROOT%", - "index" : 3 - }, - "region" : { - "startLine" : 418, - "startColumn" : 29, - "endLine" : 437, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (96% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 340, - "startColumn" : 4, - "endColumn" : 39 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e8f8be137baeb700:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 245, - "startColumn" : 3, - "endLine" : 414, - "endColumn" : 4 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "ruleIndex" : 8, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/automatic-semicolon-insertion", - "index" : 8 - }, - "message" : { - "text" : "Avoid automated semicolon insertion (97% of all statements in [the enclosing function](1) have an explicit semicolon)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 11, - "startColumn" : 2, - "endColumn" : 107 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3bd301019f5241f6:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 5, - "endLine" : 61, - "endColumn" : 2 - } - }, - "message" : { - "text" : "the enclosing function" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "index" : 9 - }, - "message" : { - "text" : "Superfluous argument passed to [function s](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1267, - "startColumn" : 34, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8080b01797565fb3:1", - "primaryLocationStartColumnFingerprint" : "30" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 764, - "startColumn" : 3, - "endLine" : 782, - "endColumn" : 4 - } - }, - "message" : { - "text" : "function s" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "ruleIndex" : 9, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/superfluous-trailing-arguments", - "index" : 9 - }, - "message" : { - "text" : "Superfluous argument passed to [function getParent](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1316, - "startColumn" : 8, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ca51f6088629b14:1", - "primaryLocationStartColumnFingerprint" : "3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 1082, - "startColumn" : 4, - "endLine" : 1095, - "endColumn" : 5 - } - }, - "message" : { - "text" : "function getParent" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 36, - "startColumn" : 51, - "endColumn" : 67 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f4b0d44f1e8579db:1", - "primaryLocationStartColumnFingerprint" : "49" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 39, - "startColumn" : 43, - "endColumn" : 59 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 40, - "startColumn" : 2, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51f60d255f7fc351:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 40, - "startColumn" : 24, - "endColumn" : 45 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 42, - "startColumn" : 2, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ca7c8a90bce765f1:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 42, - "startColumn" : 30, - "endColumn" : 57 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 43, - "startColumn" : 2, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ec6591f50b4c3d57:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 43, - "startColumn" : 23, - "endColumn" : 43 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 44, - "startColumn" : 2, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3262b2d31fcb471:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 49, - "startColumn" : 114, - "endColumn" : 133 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 44, - "startColumn" : 108, - "endColumn" : 124 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3262b2d31fcb471:1", - "primaryLocationStartColumnFingerprint" : "106" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 44, - "startColumn" : 125, - "endColumn" : 141 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 47, - "startColumn" : 85, - "endColumn" : 107 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1c5e859ba6d87541:1", - "primaryLocationStartColumnFingerprint" : "83" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 47, - "startColumn" : 108, - "endColumn" : 130 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 48, - "startColumn" : 105, - "endColumn" : 133 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9add69663958c231:1", - "primaryLocationStartColumnFingerprint" : "103" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 48, - "startColumn" : 134, - "endColumn" : 162 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/overwritten-property", - "ruleIndex" : 10, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/overwritten-property", - "index" : 10 - }, - "message" : { - "text" : "This property is overwritten by [another property](1) in the same object literal." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 56, - "startColumn" : 46, - "endColumn" : 68 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "221c90a72cbc497e:1", - "primaryLocationStartColumnFingerprint" : "44" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 56, - "startColumn" : 69, - "endColumn" : 91 - } - }, - "message" : { - "text" : "another property" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4516, - "startColumn" : 25, - "endColumn" : 62 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "65792e0deb3c5f46:1", - "primaryLocationStartColumnFingerprint" : "22" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5320, - "startColumn" : 3, - "endColumn" : 60 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c16e23435ec956:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 233, - "startColumn" : 11, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cbcd63f4a79df14b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 1422, - "startColumn" : 7, - "endColumn" : 65 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e47e834019a6b8f6:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 150 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 13, - "startColumn" : 3, - "endColumn" : 149 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 56 - }, - "region" : { - "startLine" : 72, - "startColumn" : 2, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "70b79939db071b88:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 5, - "startColumn" : 3, - "endColumn" : 149 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js", - "uriBaseId" : "%SRCROOT%", - "index" : 57 - }, - "region" : { - "startLine" : 72, - "startColumn" : 2, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "70b79939db071b88:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 7, - "endColumn" : 74 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e2088871b5fe73a0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html", - "uriBaseId" : "%SRCROOT%", - "index" : 58 - }, - "region" : { - "startLine" : 14, - "startColumn" : 2, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cb8e1d583866c682:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js", - "uriBaseId" : "%SRCROOT%", - "index" : 25 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 156 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a89ad9b22c6fb22b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 150 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/eval-like-call", - "ruleIndex" : 11, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/eval-like-call", - "index" : 11 - }, - "message" : { - "text" : "Avoid using functions that evaluate strings as code." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js", - "uriBaseId" : "%SRCROOT%", - "index" : 33 - }, - "region" : { - "startLine" : 8, - "startColumn" : 4, - "endColumn" : 150 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ed6a414ca149a9e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/use-before-declaration", - "ruleIndex" : 12, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/use-before-declaration", - "index" : 12 - }, - "message" : { - "text" : "Variable 'q' is used before its [declaration](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5353, - "startColumn" : 19, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "656bc8ef96ac1936:1", - "primaryLocationStartColumnFingerprint" : "12" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5357, - "startColumn" : 10, - "endColumn" : 11 - } - }, - "message" : { - "text" : "declaration" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'c' always evaluates to false." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 471, - "startColumn" : 10, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3e56a71c4896e4ea:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'd' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 512, - "startColumn" : 28, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "870665908d3eba95:1", - "primaryLocationStartColumnFingerprint" : "20" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'bValid' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 79, - "startColumn" : 15, - "endColumn" : 21 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "947b375e00709aeb:1", - "primaryLocationStartColumnFingerprint" : "9" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'date' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1313, - "startColumn" : 7, - "endColumn" : 11 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dfc0ad381c1fb4bf:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'sum' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.resizable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 61 - }, - "region" : { - "startLine" : 859, - "startColumn" : 22, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7d14f7958ec391f5:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'sv' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 4 - }, - "region" : { - "startLine" : 232, - "startColumn" : 11, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49f28f056dfdf311:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/trivial-conditional", - "ruleIndex" : 13, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/trivial-conditional", - "index" : 13 - }, - "message" : { - "text" : "This use of variable 'sv' always evaluates to true." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js", - "uriBaseId" : "%SRCROOT%", - "index" : 32 - }, - "region" : { - "startLine" : 209, - "startColumn" : 11, - "endColumn" : 13 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49f28f056dfdf311:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-expression", - "ruleIndex" : 14, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-expression", - "index" : 14 - }, - "message" : { - "text" : "This expression has no effect." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1671, - "startColumn" : 3, - "endColumn" : 6 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "93affca20aa1faaa:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unreachable-statement", - "ruleIndex" : 15, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "index" : 15 - }, - "message" : { - "text" : "This statement is unreachable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 349, - "startColumn" : 9, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8b793be74b1fb4e4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unreachable-statement", - "ruleIndex" : 15, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "index" : 15 - }, - "message" : { - "text" : "This statement is unreachable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 557, - "startColumn" : 9, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bcf8e83a6a5a56dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unreachable-statement", - "ruleIndex" : 15, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unreachable-statement", - "index" : 15 - }, - "message" : { - "text" : "This statement is unreachable." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 680, - "startColumn" : 5, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "abbb36808c631baf:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redundant-assignment", - "ruleIndex" : 16, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redundant-assignment", - "index" : 16 - }, - "message" : { - "text" : "This expression assigns variable cols to itself." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 331, - "startColumn" : 3, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3ac8721770ca586a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to h here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4334, - "startColumn" : 52, - "endLine" : 4339, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a0f84101f89b2559:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to d here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6773, - "startColumn" : 7, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "429da0f96b1a5117:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to responseText here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/fileuploader.js", - "uriBaseId" : "%SRCROOT%", - "index" : 0 - }, - "region" : { - "startLine" : 1090, - "startColumn" : 13, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "33885e4cb8dea09e:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to otherVal here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.slider.js", - "uriBaseId" : "%SRCROOT%", - "index" : 62 - }, - "region" : { - "startLine" : 318, - "startColumn" : 5, - "endColumn" : 44 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a1c871e3cacc580c:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to e here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 669, - "startColumn" : 5, - "endColumn" : 10 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "26055bf525d09b8b:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to posterSrc here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 491, - "startColumn" : 6, - "endColumn" : 41 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4e3fae4714d832ec:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to child here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 131, - "startColumn" : 7, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "da5d84dfbdc3cbc1:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to child here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 143, - "startColumn" : 8, - "endColumn" : 38 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "68fface7313de96f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to html here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 40 - }, - "region" : { - "startLine" : 716, - "startColumn" : 6, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "49b4a79744af59dc:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to os here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 64, - "startColumn" : 8, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a9a474a67e622038:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to os here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 18 - }, - "region" : { - "startLine" : 88, - "startColumn" : 8, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b202e2bfa3d67caf:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to nextTr here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 505, - "startColumn" : 5, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7f76ead3ea013190:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to endNode here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 23 - }, - "region" : { - "startLine" : 960, - "startColumn" : 8, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f6c954a8f712e7db:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to cell here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js", - "uriBaseId" : "%SRCROOT%", - "index" : 24 - }, - "region" : { - "startLine" : 152, - "startColumn" : 7, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4089863fae198fd0:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The initial value of cols is unused, since it is always overwritten." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 8, - "startColumn" : 6, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d32b2ec3623eacf2:1", - "primaryLocationStartColumnFingerprint" : "4" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The initial value of rows is unused, since it is always overwritten." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js", - "uriBaseId" : "%SRCROOT%", - "index" : 46 - }, - "region" : { - "startLine" : 8, - "startColumn" : 16, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "d32b2ec3623eacf2:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to tagName here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js", - "uriBaseId" : "%SRCROOT%", - "index" : 27 - }, - "region" : { - "startLine" : 160, - "startColumn" : 4, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "38d18c3cda6b5671:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 636, - "startColumn" : 4, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e611cbd2a69047d:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 802, - "startColumn" : 5, - "endColumn" : 64 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "605c3836030dd8b8:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 28 - }, - "region" : { - "startLine" : 857, - "startColumn" : 5, - "endColumn" : 64 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "88e97efe88629916:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to partDetail here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 31 - }, - "region" : { - "startLine" : 291, - "startColumn" : 2, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8256c7649a643ae4:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 40, - "startColumn" : 4, - "endColumn" : 32 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a04c56ca5650f84a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to n here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 63 - }, - "region" : { - "startLine" : 44, - "startColumn" : 4, - "endColumn" : 79 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2b485b08eefd6d1f:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to selectionClass here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 35 - }, - "region" : { - "startLine" : 74, - "startColumn" : 2, - "endColumn" : 59 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7b073cf36d86117a:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "ruleIndex" : 17, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-local", - "index" : 17 - }, - "message" : { - "text" : "The value assigned to elapsed here is unused." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/mobile/jquery.mobile.scrollview.js", - "uriBaseId" : "%SRCROOT%", - "index" : 37 - }, - "region" : { - "startLine" : 696, - "startColumn" : 6, - "endColumn" : 17 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "121779417ffc4156:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable g has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 179, - "startColumn" : 3, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4742898c4661356e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 175, - "startColumn" : 7, - "endColumn" : 18 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 230, - "startColumn" : 8, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "aa96b1e67c5e26d0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 228, - "startColumn" : 8, - "endColumn" : 17 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable i has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 465, - "startColumn" : 6, - "endLine" : 470, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "440fd3265aa95664:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 460, - "startColumn" : 10, - "endColumn" : 22 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 499, - "startColumn" : 6, - "endColumn" : 16 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b23ac590b00cd4d0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 486, - "startColumn" : 10, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable e has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 788, - "startColumn" : 5, - "endColumn" : 42 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "db9a62406e39029f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 786, - "startColumn" : 5, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 961, - "startColumn" : 7, - "endColumn" : 43 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7bcc135986958ad8:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 957, - "startColumn" : 11, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable a has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1135, - "startColumn" : 7, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dc09f57cb5eda974:1", - "primaryLocationStartColumnFingerprint" : "3" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1133, - "startColumn" : 8, - "endColumn" : 25 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable na has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1311, - "startColumn" : 3, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "857728556ffd0103:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1310, - "startColumn" : 3, - "endColumn" : 16 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable s has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1384, - "startColumn" : 5, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "253e46a26e881a02:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1382, - "startColumn" : 5, - "endColumn" : 16 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1930, - "startColumn" : 4, - "endColumn" : 20 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6f804145fe0b0db3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 1925, - "startColumn" : 8, - "endColumn" : 19 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable p has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2358, - "startColumn" : 3, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fb61cc6fdbf31b6f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2356, - "startColumn" : 3, - "endColumn" : 14 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable l has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2359, - "startColumn" : 3, - "endLine" : 2376, - "endColumn" : 4 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "44f9120e515a272:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2350, - "startColumn" : 3, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable f has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2763, - "startColumn" : 4, - "endColumn" : 26 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4c4a21f1c5193187:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2762, - "startColumn" : 11, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable g has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2806, - "startColumn" : 5, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9720b82953c8a176:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2801, - "startColumn" : 5, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2880, - "startColumn" : 5, - "endColumn" : 30 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9407e57530201b5f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 2879, - "startColumn" : 5, - "endColumn" : 14 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable e has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3111, - "startColumn" : 7, - "endLine" : 3113, - "endColumn" : 8 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "afbbb9c6b7d21f7b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3107, - "startColumn" : 11, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable b has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3419, - "startColumn" : 4, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "22aef6d286d2cbfc:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3418, - "startColumn" : 4, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable m has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3679, - "startColumn" : 6, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5b412b0860288c5f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3678, - "startColumn" : 10, - "endColumn" : 20 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable f has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3772, - "startColumn" : 4, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8ed7e137f8d8e840:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3770, - "startColumn" : 4, - "endColumn" : 19 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable b has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3821, - "startColumn" : 4, - "endColumn" : 19 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "67418199078cfbae:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3818, - "startColumn" : 8, - "endColumn" : 24 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable h has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3873, - "startColumn" : 4, - "endLine" : 3875, - "endColumn" : 5 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f278c5aae556ce04:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3872, - "startColumn" : 4, - "endColumn" : 16 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable t has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3976, - "startColumn" : 4, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8fabb31907705727:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3973, - "startColumn" : 4, - "endColumn" : 23 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable f has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4741, - "startColumn" : 6, - "endColumn" : 31 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8b9f93869e8fba10:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4740, - "startColumn" : 10, - "endColumn" : 40 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable a has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4999, - "startColumn" : 5, - "endColumn" : 36 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3aeadcc1ad844fe9:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4997, - "startColumn" : 9, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable a has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5020, - "startColumn" : 5, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "6cc3cec18ac8614b:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5018, - "startColumn" : 9, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable d has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5176, - "startColumn" : 5, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "95091bc4642c55e2:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5173, - "startColumn" : 9, - "endColumn" : 26 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable x has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5466, - "startColumn" : 7, - "endColumn" : 84 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e319ca49f51e487e:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 5465, - "startColumn" : 7, - "endColumn" : 51 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6822, - "startColumn" : 5, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e9055c70b63a7fac:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6821, - "startColumn" : 9, - "endColumn" : 17 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable b has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7546, - "startColumn" : 4, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fee0354f1eba27fa:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7544, - "startColumn" : 8, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable g has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7547, - "startColumn" : 4, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b8666fc427bb56b0:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7545, - "startColumn" : 4, - "endColumn" : 22 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "266605f508183857:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable d has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "bce826c5bf2ecd5d:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1).\nVariable c has already been declared [here](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7798, - "startColumn" : 3, - "endColumn" : 35 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4f3775d1f115a7f7:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable d has already been declared [here](1).\nVariable d has already been declared [here](2)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e95a2989033b7b9f:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1).\nVariable c has already been declared [here](2).\nVariable c has already been declared [here](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7800, - "startColumn" : 3, - "endColumn" : 34 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e0a49f4a7dc9d3d5:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7798, - "startColumn" : 3, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable d has already been declared [here](1).\nVariable d has already been declared [here](2).\nVariable d has already been declared [here](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7801, - "startColumn" : 3, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e59bc66258af358:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7795, - "startColumn" : 3, - "endColumn" : 30 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7797, - "startColumn" : 3, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7799, - "startColumn" : 3, - "endColumn" : 48 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1).\nVariable c has already been declared [here](2).\nVariable c has already been declared [here](3).\nVariable c has already been declared [here](4)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7802, - "startColumn" : 3, - "endColumn" : 37 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "f84d2fd813b43a50:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7794, - "startColumn" : 7, - "endColumn" : 36 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7796, - "startColumn" : 3, - "endColumn" : 29 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7798, - "startColumn" : 3, - "endColumn" : 35 - } - }, - "message" : { - "text" : "here" - } - }, { - "id" : 4, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 7800, - "startColumn" : 3, - "endColumn" : 34 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable c has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8096, - "startColumn" : 3, - "endColumn" : 277 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b98dd98aca26dcb3:1", - "primaryLocationStartColumnFingerprint" : "0" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 8095, - "startColumn" : 7, - "endColumn" : 15 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable src has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 133, - "startColumn" : 76, - "endColumn" : 79 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "ac028300fbf05299:1", - "primaryLocationStartColumnFingerprint" : "71" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js", - "uriBaseId" : "%SRCROOT%", - "index" : 16 - }, - "region" : { - "startLine" : 133, - "startColumn" : 46, - "endColumn" : 49 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "ruleIndex" : 18, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-variable-declaration", - "index" : 18 - }, - "message" : { - "text" : "Variable invisibleChar has already been declared [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 17, - "startColumn" : 105, - "endColumn" : 129 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b727ad69f2a9b6af:1", - "primaryLocationStartColumnFingerprint" : "102" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 17 - }, - "region" : { - "startLine" : 17, - "startColumn" : 47, - "endColumn" : 60 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "ruleIndex" : 19, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unsafe-external-link", - "index" : 19 - }, - "message" : { - "text" : "External links without noopener/noreferrer are a potential security risk." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/administration/settings_view.html", - "uriBaseId" : "%SRCROOT%", - "index" : 64 - }, - "region" : { - "startLine" : 48, - "startColumn" : 50, - "endColumn" : 102 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "7ccc38be67f2b59d:1", - "primaryLocationStartColumnFingerprint" : "45" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "ruleIndex" : 20, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/duplicate-html-attribute", - "index" : 20 - }, - "message" : { - "text" : "This attribute is duplicated [here](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/database_setup.html", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 13, - "startColumn" : 11, - "endColumn" : 24 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "e5c79bb4a808a43c:1", - "primaryLocationStartColumnFingerprint" : "6" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "templates/html/core/database_setup.html", - "uriBaseId" : "%SRCROOT%", - "index" : 65 - }, - "region" : { - "startLine" : 13, - "startColumn" : 59, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unknown-directive", - "ruleIndex" : 21, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unknown-directive", - "index" : 21 - }, - "message" : { - "text" : "Unknown directive: '$:nomunge'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery.ba-serializeobject.js", - "uriBaseId" : "%SRCROOT%", - "index" : 66 - }, - "region" : { - "startLine" : 14, - "startColumn" : 3, - "endColumn" : 15 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3576de2477c2c946:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 22, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 22 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with 'a@' and containing many repetitions of '9.9.'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 85, - "startColumn" : 505, - "endColumn" : 733 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34885015b6b29271:1", - "primaryLocationStartColumnFingerprint" : "499" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 22, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 22 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with 'a@a' and containing many repetitions of '9.9'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 85, - "startColumn" : 613, - "endColumn" : 675 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "34885015b6b29271:1", - "primaryLocationStartColumnFingerprint" : "607" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/redos", - "ruleIndex" : 22, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/redos", - "index" : 22 - }, - "message" : { - "text" : "This part of the regular expression may cause exponential backtracking on strings starting with 'a&' and containing many repetitions of 'a;&'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 41 - }, - "region" : { - "startLine" : 80, - "startColumn" : 30, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fcf436e8176571cb:1", - "primaryLocationStartColumnFingerprint" : "24" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 23, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 23 - }, - "message" : { - "text" : "This replaces only the first occurrence of \"<\"." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 3143, - "startColumn" : 279, - "endColumn" : 288 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "697e2078c911bd4:1", - "primaryLocationStartColumnFingerprint" : "274" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 23, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 23 - }, - "message" : { - "text" : "This replaces only the first occurrence of \"\\\\\"." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6548, - "startColumn" : 37, - "endColumn" : 46 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3c2f5215c724deb5:1", - "primaryLocationStartColumnFingerprint" : "33" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 23, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 23 - }, - "message" : { - "text" : "This does not escape backslash characters in the input." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js", - "uriBaseId" : "%SRCROOT%", - "index" : 67 - }, - "region" : { - "startLine" : 32, - "startColumn" : 11, - "endColumn" : 23 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "c80421660ef3f97:1", - "primaryLocationStartColumnFingerprint" : "7" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 23, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 23 - }, - "message" : { - "text" : "This does not escape backslash characters in the input." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js", - "uriBaseId" : "%SRCROOT%", - "index" : 68 - }, - "region" : { - "startLine" : 301, - "startColumn" : 17, - "endColumn" : 29 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "1b3bbf62b34af44c:1", - "primaryLocationStartColumnFingerprint" : "14" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "ruleIndex" : 23, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-sanitization", - "index" : 23 - }, - "message" : { - "text" : "This replaces only the first occurrence of '\\n'." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 11 - }, - "region" : { - "startLine" : 190, - "startColumn" : 34, - "endColumn" : 51 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4a941fd766d12f2e:1", - "primaryLocationStartColumnFingerprint" : "29" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "ruleIndex" : 24, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-assignment-to-property", - "index" : 24 - }, - "message" : { - "text" : "This write to property 'counter' is useless, since [another property write](1) always overrides it." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1148, - "startColumn" : 33, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "40ae99287e7df8d:1", - "primaryLocationStartColumnFingerprint" : "30" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 69 - }, - "region" : { - "startLine" : 1148, - "startColumn" : 3, - "endColumn" : 51 - } - }, - "message" : { - "text" : "another property write" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 25 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'macromedia.com/pub/shockwave/cabs/flash/swflash', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 18, - "startColumn" : 87, - "endColumn" : 171 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3c725cfcd2677d7b:1", - "primaryLocationStartColumnFingerprint" : "84" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 25 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'macromedia.com/pub/shockwave/cabs/director/sw', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 19, - "startColumn" : 84, - "endColumn" : 165 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "79b1b5be75fb1b8d:1", - "primaryLocationStartColumnFingerprint" : "81" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 25 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'microsoft.com/activex/controls/mplayer/en/nsmp2inf', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 20, - "startColumn" : 161, - "endColumn" : 249 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "3fece0909814abf2:1", - "primaryLocationStartColumnFingerprint" : "158" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 25 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'apple.com/qtactivex/qtplugin', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 21, - "startColumn" : 77, - "endColumn" : 136 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "baa83464899c850f:1", - "primaryLocationStartColumnFingerprint" : "74" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 25 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'macromedia.com/pub/shockwave/cabs/flash/swflash', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 22, - "startColumn" : 89, - "endColumn" : 173 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "8ad5248e23031514:1", - "primaryLocationStartColumnFingerprint" : "86" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "ruleIndex" : 25, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-hostname-regexp", - "index" : 25 - }, - "message" : { - "text" : "This string, which is used as a regular expression [here](1), has an unescaped '.' before 'sun.com/products/plugin/autodl/jinstall-1_5_0-windows-i586', so it might match more hosts than expected." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 23, - "startColumn" : 82, - "endColumn" : 172 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "fa7eb8938ebc8874:1", - "primaryLocationStartColumnFingerprint" : "79" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js", - "uriBaseId" : "%SRCROOT%", - "index" : 15 - }, - "region" : { - "startLine" : 114, - "startColumn" : 30, - "endColumn" : 72 - } - }, - "message" : { - "text" : "here" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "ruleIndex" : 26, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/loop-iteration-skipped-due-to-shifting", - "index" : 26 - }, - "message" : { - "text" : "Removing an array item without adjusting the loop index 'i' causes the subsequent array item to be skipped." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppable.js", - "uriBaseId" : "%SRCROOT%", - "index" : 70 - }, - "region" : { - "startLine" : 71, - "startColumn" : 5, - "endColumn" : 22 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "a0244b916b792ba9:1", - "primaryLocationStartColumnFingerprint" : "0" - } - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 27, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 27 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 220, - "startColumn" : 55, - "endColumn" : 57 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "5bc93733f296b513:1", - "primaryLocationStartColumnFingerprint" : "53" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 220, - "startColumn" : 39, - "endColumn" : 70 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 27, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 27 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 226, - "startColumn" : 68, - "endColumn" : 70 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "9ce0746afae7a611:1", - "primaryLocationStartColumnFingerprint" : "65" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 226, - "startColumn" : 49, - "endColumn" : 78 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 27, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 27 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 227, - "startColumn" : 31, - "endColumn" : 33 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "76a7d7cbd7b16471:1", - "primaryLocationStartColumnFingerprint" : "28" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js", - "uriBaseId" : "%SRCROOT%", - "index" : 5 - }, - "region" : { - "startLine" : 253, - "startColumn" : 48, - "endColumn" : 54 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "ruleIndex" : 27, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/useless-regexp-character-escape", - "index" : 27 - }, - "message" : { - "text" : "The escape sequence '\\.' is equivalent to just '.', so the sequence may still represent a meta-character when it is used in a [regular expression](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 27, - "startColumn" : 95, - "endColumn" : 97 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "2ed8420357e0fd27:1", - "primaryLocationStartColumnFingerprint" : "92" - }, - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/tinymce/jscripts/tiny_mce/utils/validate.js", - "uriBaseId" : "%SRCROOT%", - "index" : 36 - }, - "region" : { - "startLine" : 70, - "startColumn" : 32, - "endColumn" : 33 - } - }, - "message" : { - "text" : "regular expression" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "index" : 28 - }, - "message" : { - "text" : "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\nPotential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\nPotential XSS vulnerability in the ['$.fn.datepicker' plugin](3)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "862d0932c3f65e9c:1", - "primaryLocationStartColumnFingerprint" : "2" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 9598, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 9629, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 9598, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 9629, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 28, - "endColumn" : 30 - } - }, - "message" : { - "text" : "{}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1998, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 2029, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1998, - "startColumn" : 28, - "endColumn" : 35 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 2029, - "startColumn" : 41, - "endColumn" : 48 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 28, - "endColumn" : 30 - } - }, - "message" : { - "text" : "{}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 541, - "startColumn" : 10, - "endColumn" : 11 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 542, - "startColumn" : 154, - "endColumn" : 155 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 541, - "startColumn" : 10, - "endColumn" : 11 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 542, - "startColumn" : 154, - "endColumn" : 155 - } - }, - "message" : { - "text" : "a" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 139, - "startColumn" : 38, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 40 - } - }, - "message" : { - "text" : "settings" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 32, - "endColumn" : 46 - } - }, - "message" : { - "text" : "settings || {}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 28, - "endColumn" : 30 - } - }, - "message" : { - "text" : "{}" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 148, - "startColumn" : 19, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$.exten ... || {})" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 15, - "endColumn" : 42 - } - }, - "message" : { - "text" : "this._g ... Field\")" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1021, - "startColumn" : 4, - "endColumn" : 42 - } - }, - "message" : { - "text" : "altField" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1027, - "startColumn" : 6, - "endColumn" : 14 - } - }, - "message" : { - "text" : "altField" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery-ui.js", - "uriBaseId" : "%SRCROOT%", - "index" : 71 - }, - "region" : { - "startLine" : 9598, - "startColumn" : 19, - "endLine" : 9631, - "endColumn" : 2 - } - }, - "message" : { - "text" : "'$.fn.datepicker' plugin" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js", - "uriBaseId" : "%SRCROOT%", - "index" : 60 - }, - "region" : { - "startLine" : 1998, - "startColumn" : 19, - "endLine" : 2031, - "endColumn" : 2 - } - }, - "message" : { - "text" : "'$.fn.datepicker' plugin" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-custom.js", - "uriBaseId" : "%SRCROOT%", - "index" : 72 - }, - "region" : { - "startLine" : 541, - "endLine" : 542, - "endColumn" : 159 - } - }, - "message" : { - "text" : "'$.fn.datepicker' plugin" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "ruleIndex" : 28, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/unsafe-jquery-plugin", - "index" : 28 - }, - "message" : { - "text" : "Potential XSS vulnerability in the ['$.fn.position' plugin](1)." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 126, - "startColumn" : 15, - "endColumn" : 25 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "cdbebfebc041366e:1", - "primaryLocationStartColumnFingerprint" : "12" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 117, - "startColumn" : 27, - "endColumn" : 34 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 118, - "startColumn" : 20, - "endColumn" : 27 - } - }, - "message" : { - "text" : "options" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 118, - "startColumn" : 20, - "endColumn" : 30 - } - }, - "message" : { - "text" : "options.of" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 126, - "startColumn" : 15, - "endColumn" : 25 - } - }, - "message" : { - "text" : "options.of" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js", - "uriBaseId" : "%SRCROOT%", - "index" : 73 - }, - "region" : { - "startLine" : 117, - "startColumn" : 17, - "endLine" : 295, - "endColumn" : 2 - } - }, - "message" : { - "text" : "'$.fn.position' plugin" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 24, - "endColumn" : 118 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4a980240eec311bb:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 54, - "endColumn" : 68 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 24, - "endColumn" : 118 - } - }, - "message" : { - "text" : "''" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 4666, - "startColumn" : 54, - "endColumn" : 68 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "703eafa65a81eae4:1", - "primaryLocationStartColumnFingerprint" : "31" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/12o_super_mini.js", - "uriBaseId" : "%SRCROOT%", - "index" : 39 - }, - "region" : { - "startLine" : 6128, - "startColumn" : 36, - "endColumn" : 50 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "50c5e6da4202e956:1", - "primaryLocationStartColumnFingerprint" : "8" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/chat.js", - "uriBaseId" : "%SRCROOT%", - "index" : 42 - }, - "region" : { - "startLine" : 547, - "startColumn" : 33, - "endColumn" : 47 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 31, - "endColumn" : 125 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "4a980240eec311bb:1", - "primaryLocationStartColumnFingerprint" : "20" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 61, - "endColumn" : 75 - } - }, - "message" : { - "text" : "$(this).text()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 31, - "endColumn" : 125 - } - }, - "message" : { - "text" : "''" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/hardtree.js", - "uriBaseId" : "%SRCROOT%", - "index" : 1 - }, - "region" : { - "startLine" : 494, - "startColumn" : 61, - "endColumn" : 75 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n[DOM text](3) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "b3f0d76a66d54a16:1", - "primaryLocationStartColumnFingerprint" : "28" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 90, - "startColumn" : 17, - "endColumn" : 27 - } - }, - "message" : { - "text" : "name.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - }, - "message" : { - "text" : "\"\" ... \"\"" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 91, - "startColumn" : 17, - "endColumn" : 28 - } - }, - "message" : { - "text" : "email.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - }, - "message" : { - "text" : "\"\" ... \"\"" - } - } - } ] - } ] - }, { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 92, - "startColumn" : 17, - "endColumn" : 31 - } - }, - "message" : { - "text" : "password.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 89, - "startColumn" : 35, - "endLine" : 93, - "endColumn" : 14 - } - }, - "message" : { - "text" : "\"\" ... \"\"" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 90, - "startColumn" : 17, - "endColumn" : 27 - } - }, - "message" : { - "text" : "DOM text" - } - }, { - "id" : 2, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 91, - "startColumn" : 17, - "endColumn" : 28 - } - }, - "message" : { - "text" : "DOM text" - } - }, { - "id" : 3, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId" : "%SRCROOT%", - "index" : 59 - }, - "region" : { - "startLine" : 92, - "startColumn" : 17, - "endColumn" : 31 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 109, - "startColumn" : 18, - "endColumn" : 109 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "68541733ad36bd2:1", - "primaryLocationStartColumnFingerprint" : "13" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 103, - "startColumn" : 13, - "endColumn" : 50 - } - }, - "message" : { - "text" : "$link.s ... \"alt\" )" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 103, - "startColumn" : 5, - "endColumn" : 50 - } - }, - "message" : { - "text" : "title" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 109, - "startColumn" : 33, - "endColumn" : 38 - } - }, - "message" : { - "text" : "title" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 109, - "startColumn" : 18, - "endColumn" : 109 - } - }, - "message" : { - "text" : "\"\"" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html", - "uriBaseId" : "%SRCROOT%", - "index" : 74 - }, - "region" : { - "startLine" : 103, - "startColumn" : 13, - "endColumn" : 50 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 61, - "startColumn" : 13, - "endColumn" : 90 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "51698d300613832:1", - "primaryLocationStartColumnFingerprint" : "8" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 59, - "startColumn" : 16, - "endColumn" : 30 - } - }, - "message" : { - "text" : "tabTitle.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 59, - "startColumn" : 16, - "endColumn" : 53 - } - }, - "message" : { - "text" : "tabTitl ... Counter" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 59, - "startColumn" : 8, - "endColumn" : 53 - } - }, - "message" : { - "text" : "label" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 61, - "startColumn" : 83, - "endColumn" : 88 - } - }, - "message" : { - "text" : "label" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 61, - "startColumn" : 13, - "endColumn" : 90 - } - }, - "message" : { - "text" : "tabTemp ... label )" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 59, - "startColumn" : 16, - "endColumn" : 30 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex" : 29, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/xss-through-dom", - "index" : 29 - }, - "message" : { - "text" : "[DOM text](1) is reinterpreted as HTML without escaping meta-characters." - }, - "locations" : [ { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 65, - "startColumn" : 17, - "endColumn" : 75 - } - } - } ], - "partialFingerprints" : { - "primaryLocationLineHash" : "dbf55bee3d3f647b:1", - "primaryLocationStartColumnFingerprint" : "13" - }, - "codeFlows" : [ { - "threadFlows" : [ { - "locations" : [ { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 62, - "startColumn" : 22, - "endColumn" : 38 - } - }, - "message" : { - "text" : "tabContent.val()" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 62, - "startColumn" : 22, - "endColumn" : 75 - } - }, - "message" : { - "text" : "tabCont ... ntent.\"" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 62, - "startColumn" : 5, - "endColumn" : 75 - } - }, - "message" : { - "text" : "tabContentHtml" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 65, - "startColumn" : 46, - "endColumn" : 60 - } - }, - "message" : { - "text" : "tabContentHtml" - } - } - }, { - "location" : { - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 65, - "startColumn" : 17, - "endColumn" : 75 - } - }, - "message" : { - "text" : "\"
\"" - } - } - } ] - } ] - } ], - "relatedLocations" : [ { - "id" : 1, - "physicalLocation" : { - "artifactLocation" : { - "uri" : "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html", - "uriBaseId" : "%SRCROOT%", - "index" : 75 - }, - "region" : { - "startLine" : 62, - "startColumn" : 22, - "endColumn" : 38 - } - }, - "message" : { - "text" : "DOM text" - } - } ] - }, { - "ruleId" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "ruleIndex" : 30, - "rule" : { - "id" : "com.lgtm/javascript-queries:js/incomplete-multi-character-sanitization", - "index" : 30 - }, - "message" : { - "text" : "This string may still contain ['" - } - } - } - ] - } - ] - } - ], - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/12o_super_mini.js", - "uriBaseId": "%SRCROOT%", - "index": 40 - }, - "region": { - "startLine": 4666, - "startColumn": 54, - "endColumn": 68 - } - }, - "message": { - "text": "DOM text" - } - } - ] - }, - { - "ruleId": "com.lgtm/javascript-queries:js/xss-through-dom", - "ruleIndex": 32, - "rule": { - "id": "com.lgtm/javascript-queries:js/xss-through-dom", - "index": 32 - }, - "message": { - "text": "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n[DOM text](3) is reinterpreted as HTML without escaping meta-characters." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 89, - "startColumn": 35, - "endLine": 93, - "endColumn": 14 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b3f0d76a66d54a16:1", - "primaryLocationStartColumnFingerprint": "28" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 90, - "startColumn": 17, - "endColumn": 27 - } - }, - "message": { - "text": "name.val()" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 89, - "startColumn": 35, - "endLine": 93, - "endColumn": 14 - } - }, - "message": { - "text": "\"\" ... \"\"" - } - } - } - ] - } - ] - }, - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 91, - "startColumn": 17, - "endColumn": 28 - } - }, - "message": { - "text": "email.val()" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 89, - "startColumn": 35, - "endLine": 93, - "endColumn": 14 - } - }, - "message": { - "text": "\"\" ... \"\"" - } - } - } - ] - } - ] - }, - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 92, - "startColumn": 17, - "endColumn": 31 - } - }, - "message": { - "text": "password.val()" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 89, - "startColumn": 35, - "endLine": 93, - "endColumn": 14 - } - }, - "message": { - "text": "\"\" ... \"\"" - } - } - } - ] - } - ] - } - ], - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 90, - "startColumn": 17, - "endColumn": 27 - } - }, - "message": { - "text": "DOM text" - } - }, - { - "id": 2, - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 91, - "startColumn": 17, - "endColumn": 28 - } - }, - "message": { - "text": "DOM text" - } - }, - { - "id": 3, - "physicalLocation": { - "artifactLocation": { - "uri": "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 92, - "startColumn": 17, - "endColumn": 31 - } - }, - "message": { - "text": "DOM text" - } - } - ] - } - ], - "newlineSequences": [ - "\r\n", - "", - "
", - "
" - ], - "columnKind": "utf16CodeUnits", - "properties": { - "semmle.formatSpecifier": "2.1.0", - "semmle.sourceLanguage": "javascript" - } - }, - { - "tool": { - "driver": { - "name": "LGTM.com", - "organization": "Semmle", - "version": "1.29.0-SNAPSHOT", - "rules": [ - { - "id": "com.lgtm/python-queries:py/unnecessary-pass", - "name": "com.lgtm/python-queries:py/unnecessary-pass", - "shortDescription": { - "text": "Unnecessary pass" - }, - "fullDescription": { - "text": "Unnecessary 'pass' statement" - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "tags": [ - "maintainability", - "useless-code" - ], - "kind": "problem", - "precision": "very-high", - "severity": "warning", - "sub-severity": "low" - } - }, - { - "id": "com.lgtm/python-queries:py/multiple-definition", - "name": "com.lgtm/python-queries:py/multiple-definition", - "shortDescription": { - "text": "Variable defined multiple times" - }, - "fullDescription": { - "text": "Assignment to a variable occurs multiple times without any intermediate use of that variable" - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "tags": [ - "maintainability", - "useless-code", - "external/cwe/cwe-563" - ], - "kind": "problem", - "precision": "very-high", - "severity": "warning", - "sub-severity": "low" - } - }, - { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "name": "com.lgtm/python-queries:py/super-not-enclosing-class", - "shortDescription": { - "text": "First argument to super() is not enclosing class" - }, - "fullDescription": { - "text": "Calling super with something other than the enclosing class may cause incorrect object initialization." - }, - "defaultConfiguration": { - "enabled": true, - "level": "error" - }, - "properties": { - "tags": [ - "reliability", - "maintainability", - "convention", - "external/cwe/cwe-687" - ], - "kind": "problem", - "precision": "high", - "severity": "error", - "sub-severity": "low" - } - }, - { - "id": "com.lgtm/python-queries:py/polluting-import", - "name": "com.lgtm/python-queries:py/polluting-import", - "shortDescription": { - "text": "'import *' may pollute namespace" - }, - "fullDescription": { - "text": "Importing a module using 'import *' may unintentionally pollute the global namespace if the module does not define `__all__`" - }, - "defaultConfiguration": { - "enabled": true, - "level": "note" - }, - "properties": { - "tags": [ - "maintainability", - "modularity" - ], - "kind": "problem", - "precision": "very-high", - "severity": "recommendation", - "sub-severity": "high" - } - }, - { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "name": "com.lgtm/python-queries:py/unreachable-statement", - "shortDescription": { - "text": "Unreachable code" - }, - "fullDescription": { - "text": "Code is unreachable" - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "tags": [ - "maintainability", - "useless-code", - "external/cwe/cwe-561" - ], - "kind": "problem", - "precision": "very-high", - "severity": "warning", - "sub-severity": "low" - } - }, - { - "id": "com.lgtm/python-queries:py/unused-import", - "name": "com.lgtm/python-queries:py/unused-import", - "shortDescription": { - "text": "Unused import" - }, - "fullDescription": { - "text": "Import is not required as it is not used" - }, - "defaultConfiguration": { - "enabled": true, - "level": "note" - }, - "properties": { - "tags": [ - "maintainability", - "useless-code" - ], - "kind": "problem", - "precision": "very-high", - "severity": "recommendation", - "sub-severity": "high" - } - }, - { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "name": "com.lgtm/python-queries:py/catch-base-exception", - "shortDescription": { - "text": "Except block handles 'BaseException'" - }, - "fullDescription": { - "text": "Handling 'BaseException' means that system exits and keyboard interrupts may be mis-handled." - }, - "defaultConfiguration": { - "enabled": true, - "level": "note" - }, - "properties": { - "tags": [ - "reliability", - "readability", - "convention", - "external/cwe/cwe-396" - ], - "kind": "problem", - "precision": "very-high", - "severity": "recommendation", - "sub-severity": "high" - } - }, - { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "name": "com.lgtm/python-queries:py/unused-local-variable", - "shortDescription": { - "text": "Unused local variable" - }, - "fullDescription": { - "text": "Local variable is defined but not used" - }, - "defaultConfiguration": { - "enabled": true, - "level": "note" - }, - "properties": { - "tags": [ - "maintainability", - "useless-code", - "external/cwe/cwe-563" - ], - "kind": "problem", - "precision": "very-high", - "severity": "recommendation", - "sub-severity": "high" - } - }, - { - "id": "com.lgtm/python-queries:py/conflicting-attributes", - "name": "com.lgtm/python-queries:py/conflicting-attributes", - "shortDescription": { - "text": "Conflicting attributes in base classes" - }, - "fullDescription": { - "text": "When a class subclasses multiple base classes and more than one base class defines the same attribute, attribute overriding may result in unexpected behavior by instances of this class." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "tags": [ - "reliability", - "maintainability", - "modularity" - ], - "kind": "problem", - "precision": "high", - "severity": "warning", - "sub-severity": "low" - } - }, - { - "id": "com.lgtm/python-queries:py/missing-equals", - "name": "com.lgtm/python-queries:py/missing-equals", - "shortDescription": { - "text": "`__eq__` not overridden when adding attributes" - }, - "fullDescription": { - "text": "When adding new attributes to instances of a class, equality for that class needs to be defined." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "tags": [ - "reliability", - "correctness" - ], - "kind": "problem", - "precision": "high", - "severity": "warning", - "sub-severity": "high" - } - }, - { - "id": "com.lgtm/python-queries:py/import-and-import-from", - "name": "com.lgtm/python-queries:py/import-and-import-from", - "shortDescription": { - "text": "Module is imported with 'import' and 'import from'" - }, - "fullDescription": { - "text": "A module is imported with the \"import\" and \"import from\" statements" - }, - "defaultConfiguration": { - "enabled": true, - "level": "note" - }, - "properties": { - "tags": [ - "maintainability" - ], - "kind": "problem", - "precision": "very-high", - "severity": "recommendation", - "sub-severity": "low" - } - }, - { - "id": "com.lgtm/python-queries:py/stack-trace-exposure", - "name": "com.lgtm/python-queries:py/stack-trace-exposure", - "shortDescription": { - "text": "Information exposure through an exception" - }, - "fullDescription": { - "text": "Leaking information about an exception, such as messages and stack traces, to an external user can expose implementation details that are useful to an attacker for developing a subsequent exploit." - }, - "defaultConfiguration": { - "enabled": true, - "level": "error" - }, - "properties": { - "tags": [ - "security", - "external/cwe/cwe-209", - "external/cwe/cwe-497" - ], - "kind": "path-problem", - "precision": "high", - "security-severity": "5.4", - "severity": "error" - } - }, - { - "id": "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "name": "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "shortDescription": { - "text": "Incomplete URL substring sanitization" - }, - "fullDescription": { - "text": "Security checks on the substrings of an unparsed URL are often vulnerable to bypassing." - }, - "defaultConfiguration": { - "enabled": true, - "level": "warning" - }, - "properties": { - "tags": [ - "correctness", - "security", - "external/cwe/cwe-20" - ], - "kind": "problem", - "precision": "high", - "security-severity": "7.8", - "severity": "warning" - } - } - ] - } - }, - "versionControlProvenance": [ - { - "repositoryUri": "https://github.com/treeio/treeio.git", - "revisionId": "bae3115f4015aad2cbc5ab45572232ceec990495" - } - ], - "artifacts": [ - { - "location": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - } - }, - { - "location": { - "uri": "treeio/core/search/views.py", - "uriBaseId": "%SRCROOT%", - "index": 1 - } - }, - { - "location": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - } - }, - { - "location": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - } - }, - { - "location": { - "uri": "treeio/core/administration/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 4 - } - }, - { - "location": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - } - }, - { - "location": { - "uri": "treeio/identities/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 6 - } - }, - { - "location": { - "uri": "treeio/infrastructure/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 7 - } - }, - { - "location": { - "uri": "treeio/core/db/__init__.py", - "uriBaseId": "%SRCROOT%", - "index": 8 - } - }, - { - "location": { - "uri": "treeio/core/db/db.py", - "uriBaseId": "%SRCROOT%", - "index": 9 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py", - "uriBaseId": "%SRCROOT%", - "index": 10 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 11 - } - }, - { - "location": { - "uri": "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId": "%SRCROOT%", - "index": 12 - } - }, - { - "location": { - "uri": "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId": "%SRCROOT%", - "index": 13 - } - }, - { - "location": { - "uri": "treeio/account/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 14 - } - }, - { - "location": { - "uri": "treeio/changes/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 15 - } - }, - { - "location": { - "uri": "treeio/core/ajax/converter.py", - "uriBaseId": "%SRCROOT%", - "index": 16 - } - }, - { - "location": { - "uri": "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 17 - } - }, - { - "location": { - "uri": "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId": "%SRCROOT%", - "index": 18 - } - }, - { - "location": { - "uri": "treeio/core/management/commands/installdb.py", - "uriBaseId": "%SRCROOT%", - "index": 19 - } - }, - { - "location": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId": "%SRCROOT%", - "index": 21 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId": "%SRCROOT%", - "index": 22 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId": "%SRCROOT%", - "index": 23 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId": "%SRCROOT%", - "index": 24 - } - }, - { - "location": { - "uri": "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId": "%SRCROOT%", - "index": 25 - } - }, - { - "location": { - "uri": "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 26 - } - }, - { - "location": { - "uri": "treeio/events/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 27 - } - }, - { - "location": { - "uri": "treeio/finance/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 28 - } - }, - { - "location": { - "uri": "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId": "%SRCROOT%", - "index": 29 - } - }, - { - "location": { - "uri": "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 30 - } - }, - { - "location": { - "uri": "treeio/identities/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 31 - } - }, - { - "location": { - "uri": "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId": "%SRCROOT%", - "index": 32 - } - }, - { - "location": { - "uri": "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId": "%SRCROOT%", - "index": 33 - } - }, - { - "location": { - "uri": "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId": "%SRCROOT%", - "index": 34 - } - }, - { - "location": { - "uri": "treeio/infrastructure/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 35 - } - }, - { - "location": { - "uri": "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 36 - } - }, - { - "location": { - "uri": "treeio/messaging/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 37 - } - }, - { - "location": { - "uri": "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId": "%SRCROOT%", - "index": 38 - } - }, - { - "location": { - "uri": "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 39 - } - }, - { - "location": { - "uri": "treeio/news/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 40 - } - }, - { - "location": { - "uri": "treeio/projects/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 41 - } - }, - { - "location": { - "uri": "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 42 - } - }, - { - "location": { - "uri": "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId": "%SRCROOT%", - "index": 43 - } - }, - { - "location": { - "uri": "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId": "%SRCROOT%", - "index": 44 - } - }, - { - "location": { - "uri": "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId": "%SRCROOT%", - "index": 45 - } - }, - { - "location": { - "uri": "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId": "%SRCROOT%", - "index": 46 - } - }, - { - "location": { - "uri": "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 47 - } - }, - { - "location": { - "uri": "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId": "%SRCROOT%", - "index": 48 - } - }, - { - "location": { - "uri": "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId": "%SRCROOT%", - "index": 49 - } - }, - { - "location": { - "uri": "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py", - "uriBaseId": "%SRCROOT%", - "index": 50 - } - }, - { - "location": { - "uri": "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 51 - } - }, - { - "location": { - "uri": "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId": "%SRCROOT%", - "index": 52 - } - }, - { - "location": { - "uri": "treeio/services/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 53 - } - }, - { - "location": { - "uri": "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId": "%SRCROOT%", - "index": 54 - } - }, - { - "location": { - "uri": "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 55 - } - }, - { - "location": { - "uri": "treeio/account/ajax.py", - "uriBaseId": "%SRCROOT%", - "index": 56 - } - }, - { - "location": { - "uri": "treeio/account/cron.py", - "uriBaseId": "%SRCROOT%", - "index": 57 - } - }, - { - "location": { - "uri": "treeio/account/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 58 - } - }, - { - "location": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - } - }, - { - "location": { - "uri": "treeio/core/administration/views.py", - "uriBaseId": "%SRCROOT%", - "index": 60 - } - }, - { - "location": { - "uri": "treeio/core/api/doc.py", - "uriBaseId": "%SRCROOT%", - "index": 61 - } - }, - { - "location": { - "uri": "treeio/core/auth.py", - "uriBaseId": "%SRCROOT%", - "index": 62 - } - }, - { - "location": { - "uri": "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId": "%SRCROOT%", - "index": 63 - } - }, - { - "location": { - "uri": "treeio/core/dashboard/views.py", - "uriBaseId": "%SRCROOT%", - "index": 64 - } - }, - { - "location": { - "uri": "treeio/core/db/creation.py", - "uriBaseId": "%SRCROOT%", - "index": 65 - } - }, - { - "location": { - "uri": "treeio/core/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 66 - } - }, - { - "location": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - } - }, - { - "location": { - "uri": "treeio/core/management/commands/runcron.py", - "uriBaseId": "%SRCROOT%", - "index": 68 - } - }, - { - "location": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - } - }, - { - "location": { - "uri": "treeio/core/rendering.py", - "uriBaseId": "%SRCROOT%", - "index": 70 - } - }, - { - "location": { - "uri": "treeio/core/rss.py", - "uriBaseId": "%SRCROOT%", - "index": 71 - } - }, - { - "location": { - "uri": "treeio/core/search/models.py", - "uriBaseId": "%SRCROOT%", - "index": 72 - } - }, - { - "location": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - } - }, - { - "location": { - "uri": "treeio/core/templatetags/user.py", - "uriBaseId": "%SRCROOT%", - "index": 74 - } - }, - { - "location": { - "uri": "treeio/core/trash/views.py", - "uriBaseId": "%SRCROOT%", - "index": 75 - } - }, - { - "location": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - } - }, - { - "location": { - "uri": "treeio/documents/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 77 - } - }, - { - "location": { - "uri": "treeio/events/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 78 - } - }, - { - "location": { - "uri": "treeio/events/rendering.py", - "uriBaseId": "%SRCROOT%", - "index": 79 - } - }, - { - "location": { - "uri": "treeio/finance/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 80 - } - }, - { - "location": { - "uri": "treeio/finance/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 81 - } - }, - { - "location": { - "uri": "treeio/finance/models.py", - "uriBaseId": "%SRCROOT%", - "index": 82 - } - }, - { - "location": { - "uri": "treeio/finance/views.py", - "uriBaseId": "%SRCROOT%", - "index": 83 - } - }, - { - "location": { - "uri": "treeio/identities/integration.py", - "uriBaseId": "%SRCROOT%", - "index": 84 - } - }, - { - "location": { - "uri": "treeio/identities/models.py", - "uriBaseId": "%SRCROOT%", - "index": 85 - } - }, - { - "location": { - "uri": "treeio/identities/objects.py", - "uriBaseId": "%SRCROOT%", - "index": 86 - } - }, - { - "location": { - "uri": "treeio/messaging/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 87 - } - }, - { - "location": { - "uri": "treeio/messaging/emails.py", - "uriBaseId": "%SRCROOT%", - "index": 88 - } - }, - { - "location": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - } - }, - { - "location": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - } - }, - { - "location": { - "uri": "treeio/news/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 91 - } - }, - { - "location": { - "uri": "treeio/projects/ajax.py", - "uriBaseId": "%SRCROOT%", - "index": 92 - } - }, - { - "location": { - "uri": "treeio/projects/identities.py", - "uriBaseId": "%SRCROOT%", - "index": 93 - } - }, - { - "location": { - "uri": "treeio/reports/templatetags/reports.py", - "uriBaseId": "%SRCROOT%", - "index": 94 - } - }, - { - "location": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - } - }, - { - "location": { - "uri": "treeio/sales/models.py", - "uriBaseId": "%SRCROOT%", - "index": 96 - } - }, - { - "location": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - } - }, - { - "location": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - } - }, - { - "location": { - "uri": "treeio/services/identities.py", - "uriBaseId": "%SRCROOT%", - "index": 99 - } - }, - { - "location": { - "uri": "treeio/services/models.py", - "uriBaseId": "%SRCROOT%", - "index": 100 - } - }, - { - "location": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - } - }, - { - "location": { - "uri": "treeio/core/api/utils.py", - "uriBaseId": "%SRCROOT%", - "index": 102 - } - }, - { - "location": { - "uri": "treeio/projects/views.py", - "uriBaseId": "%SRCROOT%", - "index": 103 - } - }, - { - "location": { - "uri": "treeio/core/sanitizer.py", - "uriBaseId": "%SRCROOT%", - "index": 104 - } - } - ], - "results": [ - { - "ruleId": "com.lgtm/python-queries:py/unnecessary-pass", - "ruleIndex": 0, - "rule": { - "id": "com.lgtm/python-queries:py/unnecessary-pass", - "index": 0 - }, - "message": { - "text": "Unnecessary 'pass' statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 500, - "startColumn": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4d5a816bdc87f65a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex": 1, - "rule": { - "id": "com.lgtm/python-queries:py/multiple-definition", - "index": 1 - }, - "message": { - "text": "This assignment to 'qry' is unnecessary as it is redefined [here](1) before this value is used.\nThis assignment to 'qry' is unnecessary as it is redefined [here](2) before this value is used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/views.py", - "uriBaseId": "%SRCROOT%", - "index": 1 - }, - "region": { - "startLine": 41, - "startColumn": 17, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "337db906fd5eb184:1", - "primaryLocationStartColumnFingerprint": "0" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/views.py", - "uriBaseId": "%SRCROOT%", - "index": 1 - }, - "region": { - "startLine": 43, - "startColumn": 21, - "endColumn": 24 - } - }, - "message": { - "text": "here" - } - }, - { - "id": 2, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/views.py", - "uriBaseId": "%SRCROOT%", - "index": 1 - }, - "region": { - "startLine": 48, - "startColumn": 21, - "endColumn": 24 - } - }, - "message": { - "text": "here" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex": 1, - "rule": { - "id": "com.lgtm/python-queries:py/multiple-definition", - "index": 1 - }, - "message": { - "text": "This assignment to 'query' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 548, - "startColumn": 13, - "endColumn": 18 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "38aaec6b42707061:1", - "primaryLocationStartColumnFingerprint": "0" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 566, - "startColumn": 5, - "endColumn": 10 - } - }, - "message": { - "text": "here" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex": 1, - "rule": { - "id": "com.lgtm/python-queries:py/multiple-definition", - "index": 1 - }, - "message": { - "text": "This assignment to 'query' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 550, - "startColumn": 13, - "endColumn": 18 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7e72ed1bd661ad78:1", - "primaryLocationStartColumnFingerprint": "0" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 566, - "startColumn": 5, - "endColumn": 10 - } - }, - "message": { - "text": "here" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/multiple-definition", - "ruleIndex": 1, - "rule": { - "id": "com.lgtm/python-queries:py/multiple-definition", - "index": 1 - }, - "message": { - "text": "This assignment to 'DEBUG' is unnecessary as it is redefined [here](1) before this value is used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - }, - "region": { - "startLine": 22, - "endColumn": 6 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "dcbba315c4aab51c:1", - "primaryLocationStartColumnFingerprint": "0" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - }, - "region": { - "startLine": 23, - "endColumn": 6 - } - }, - "message": { - "text": "here" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex": 2, - "rule": { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "index": 2 - }, - "message": { - "text": "First argument to super() should be PageFolderHandler." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 4 - }, - "region": { - "startLine": 198, - "startColumn": 25, - "endColumn": 51 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7aac7a5b7522950e:1", - "primaryLocationStartColumnFingerprint": "16" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex": 2, - "rule": { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "index": 2 - }, - "message": { - "text": "First argument to super() should be PageHandler." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 4 - }, - "region": { - "startLine": 217, - "startColumn": 25, - "endColumn": 51 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "79b557212d64f987:1", - "primaryLocationStartColumnFingerprint": "16" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex": 2, - "rule": { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "index": 2 - }, - "message": { - "text": "First argument to super() should be ContactSetupForm." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 451, - "startColumn": 9, - "endColumn": 33 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d154ffffebae57dc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex": 2, - "rule": { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "index": 2 - }, - "message": { - "text": "First argument to super() should be ContactFieldHandler." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 6 - }, - "region": { - "startLine": 31, - "startColumn": 25, - "endColumn": 51 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d65e22c97eb5048:1", - "primaryLocationStartColumnFingerprint": "16" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex": 2, - "rule": { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "index": 2 - }, - "message": { - "text": "First argument to super() should be ItemFieldHandler." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/infrastructure/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 7 - }, - "region": { - "startLine": 40, - "startColumn": 25, - "endColumn": 51 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "977a5dfdd0933ae7:1", - "primaryLocationStartColumnFingerprint": "16" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/super-not-enclosing-class", - "ruleIndex": 2, - "rule": { - "id": "com.lgtm/python-queries:py/super-not-enclosing-class", - "index": 2 - }, - "message": { - "text": "First argument to super() should be ItemStatusHandler." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/infrastructure/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 7 - }, - "region": { - "startLine": 71, - "startColumn": 25, - "endColumn": 51 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f0a7fa61d6949e88:1", - "primaryLocationStartColumnFingerprint": "16" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/polluting-import", - "ruleIndex": 3, - "rule": { - "id": "com.lgtm/python-queries:py/polluting-import", - "index": 3 - }, - "message": { - "text": "Import pollutes the enclosing namespace, as the imported module [treeio.core.db.db](1) does not define '__all__'." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/__init__.py", - "uriBaseId": "%SRCROOT%", - "index": 8 - }, - "region": { - "startLine": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "41e4e91ec32c2be4:1", - "primaryLocationStartColumnFingerprint": "0" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/db.py", - "uriBaseId": "%SRCROOT%", - "index": 9 - } - }, - "message": { - "text": "treeio.core.db.db" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py", - "uriBaseId": "%SRCROOT%", - "index": 10 - }, - "region": { - "startLine": 431, - "startColumn": 9, - "endColumn": 62 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6d14fb4677e6ec83:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 11 - }, - "region": { - "startLine": 42, - "startColumn": 9, - "endLine": 43, - "endColumn": 115 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "bef6ecccda4ea261:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId": "%SRCROOT%", - "index": 12 - }, - "region": { - "startLine": 143, - "startColumn": 9, - "endColumn": 76 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e632f4f1c7640158:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId": "%SRCROOT%", - "index": 13 - }, - "region": { - "startLine": 42, - "startColumn": 9, - "endLine": 43, - "endColumn": 104 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "94f78beaa2ace32c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - }, - "region": { - "startLine": 103, - "startColumn": 5, - "endColumn": 48 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3b66c4100f0951ca:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - }, - "region": { - "startLine": 154, - "startColumn": 5, - "endLine": 160, - "endColumn": 6 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4d07f19726c561ce:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unreachable-statement", - "ruleIndex": 4, - "rule": { - "id": "com.lgtm/python-queries:py/unreachable-statement", - "index": 4 - }, - "message": { - "text": "Unreachable statement." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - }, - "region": { - "startLine": 240, - "startColumn": 5, - "endColumn": 54 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2f337a6930971846:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 14 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 14 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "986d788c12968405:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 14 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c914608bcb68ce9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/changes/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 15 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'OrderedDict' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/ajax/converter.py", - "uriBaseId": "%SRCROOT%", - "index": 16 - }, - "region": { - "startLine": 11, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2b8b1ad87d2ff3ac:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 17 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 17 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b034:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId": "%SRCROOT%", - "index": 18 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py", - "uriBaseId": "%SRCROOT%", - "index": 18 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021ad99bc0e0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'json' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/management/commands/installdb.py", - "uriBaseId": "%SRCROOT%", - "index": 19 - }, - "region": { - "startLine": 9, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "eb4abfb2c59a7cfc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'translation' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - }, - "region": { - "startLine": 17, - "endColumn": 37 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b8e463640caf410d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId": "%SRCROOT%", - "index": 21 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f4ce139bd8:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId": "%SRCROOT%", - "index": 21 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "30e65cf5206cd372:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId": "%SRCROOT%", - "index": 21 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ee0db281ff199024:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'Object' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0003_treeiocore.py", - "uriBaseId": "%SRCROOT%", - "index": 21 - }, - "region": { - "startLine": 11, - "endColumn": 38 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3b410771d02c216b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId": "%SRCROOT%", - "index": 22 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0004_auto__del_field_object_user.py", - "uriBaseId": "%SRCROOT%", - "index": 22 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 11 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 11 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId": "%SRCROOT%", - "index": 23 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0006_auto__add_configsetting.py", - "uriBaseId": "%SRCROOT%", - "index": 23 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId": "%SRCROOT%", - "index": 24 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0007_auto__add_attachment.py", - "uriBaseId": "%SRCROOT%", - "index": 24 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b027:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId": "%SRCROOT%", - "index": 25 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py", - "uriBaseId": "%SRCROOT%", - "index": 25 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021ad99bc0de:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 26 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/documents/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 26 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b02c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/events/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 27 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/events/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 27 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b02b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 28 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId": "%SRCROOT%", - "index": 29 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py", - "uriBaseId": "%SRCROOT%", - "index": 29 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b029:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 30 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 30 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 30 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ce944290b73f1072:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 31 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId": "%SRCROOT%", - "index": 32 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py", - "uriBaseId": "%SRCROOT%", - "index": 32 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9f5b07440461a3c2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId": "%SRCROOT%", - "index": 33 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId": "%SRCROOT%", - "index": 33 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0003_related_accessentity.py", - "uriBaseId": "%SRCROOT%", - "index": 33 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3442435256c03aa9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId": "%SRCROOT%", - "index": 34 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py", - "uriBaseId": "%SRCROOT%", - "index": 34 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/infrastructure/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 35 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 36 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/knowledge/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 36 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b031:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 37 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py", - "uriBaseId": "%SRCROOT%", - "index": 12 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId": "%SRCROOT%", - "index": 38 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId": "%SRCROOT%", - "index": 38 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py", - "uriBaseId": "%SRCROOT%", - "index": 38 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "34424981d1c0cb95:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 39 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py", - "uriBaseId": "%SRCROOT%", - "index": 39 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/news/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 40 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/news/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 40 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "986d788c12968405:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/news/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 40 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c914608bcb68ce9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 41 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 42 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 42 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 42 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3442df3a93af9bfa:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId": "%SRCROOT%", - "index": 43 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py", - "uriBaseId": "%SRCROOT%", - "index": 43 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId": "%SRCROOT%", - "index": 44 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId": "%SRCROOT%", - "index": 44 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0004_timeslots.py", - "uriBaseId": "%SRCROOT%", - "index": 44 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3442791bb1889706:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId": "%SRCROOT%", - "index": 45 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0005_auto__del_taskrecord.py", - "uriBaseId": "%SRCROOT%", - "index": 45 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId": "%SRCROOT%", - "index": 46 - }, - "region": { - "startLine": 2, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py", - "uriBaseId": "%SRCROOT%", - "index": 46 - }, - "region": { - "startLine": 5, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 47 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 47 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021f20c7b03a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId": "%SRCROOT%", - "index": 48 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py", - "uriBaseId": "%SRCROOT%", - "index": 48 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51ed56980:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId": "%SRCROOT%", - "index": 49 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId": "%SRCROOT%", - "index": 49 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/south_migrations/0003_delete_old.py", - "uriBaseId": "%SRCROOT%", - "index": 49 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2b23ba1f4214afd9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py", - "uriBaseId": "%SRCROOT%", - "index": 50 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0b048a89:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 51 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f4ce139bd8:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 51 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "30e7ac09b405fbfc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 51 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "41485435967e8a7b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId": "%SRCROOT%", - "index": 52 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py", - "uriBaseId": "%SRCROOT%", - "index": 52 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9f5b07440461a3c2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0001_initial.py", - "uriBaseId": "%SRCROOT%", - "index": 53 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId": "%SRCROOT%", - "index": 54 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py", - "uriBaseId": "%SRCROOT%", - "index": 54 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "def5021ad99bc0f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 55 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d16298f3462a86f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'db' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 55 - }, - "region": { - "startLine": 8, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "426508124f82de9a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0003_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 55 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3442df3a93af9bfa:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'datetime' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId": "%SRCROOT%", - "index": 13 - }, - "region": { - "startLine": 7, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6a868cd0abb4138:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-import", - "ruleIndex": 5, - "rule": { - "id": "com.lgtm/python-queries:py/unused-import", - "index": 5 - }, - "message": { - "text": "Import of 'models' is not used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py", - "uriBaseId": "%SRCROOT%", - "index": 13 - }, - "region": { - "startLine": 10, - "endColumn": 29 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f40606c51e089e0f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/ajax.py", - "uriBaseId": "%SRCROOT%", - "index": 56 - }, - "region": { - "startLine": 260, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "31e3ddb9bca8c95d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/cron.py", - "uriBaseId": "%SRCROOT%", - "index": 57 - }, - "region": { - "startLine": 58, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2892b3e0c24cbd95:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 58 - }, - "region": { - "startLine": 156, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "34ade055cf1ca73:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 58 - }, - "region": { - "startLine": 165, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "bab454236e485ac5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 58 - }, - "region": { - "startLine": 182, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8d92698814370b6d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 58 - }, - "region": { - "startLine": 236, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "14e02c3970f95531:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 29, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b25d3e4e2a9429dc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 107, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6b412f7bbcb0b95:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 115, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6c53d6b57b72912c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 133, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66f787c7b210b99e:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 139, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3d21259ab05ccf72:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 151, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c8b5bce6435eab45:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/account/views.py", - "uriBaseId": "%SRCROOT%", - "index": 59 - }, - "region": { - "startLine": 214, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "45be99501d33d7fd:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 73, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "52e875f74c9992d5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 80, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "89cc9c96f34983bd:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 111, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a6e203f953c61c7e:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 185, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "28e44790a5668ae0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 190, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "75a9d0a95eeef32:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 243, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "811bc4fc7e313ebd:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 5 - }, - "region": { - "startLine": 365, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f7c8df56ec226dbc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/views.py", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 240, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e6ab5a446e16dd93:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/views.py", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 289, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f4629a791848c45b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/views.py", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 763, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9b5fc9375d29fca2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/views.py", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 776, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6c53d6b57b72912c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/administration/views.py", - "uriBaseId": "%SRCROOT%", - "index": 60 - }, - "region": { - "startLine": 796, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "83c28c9ecbe543e3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/ajax/converter.py", - "uriBaseId": "%SRCROOT%", - "index": 16 - }, - "region": { - "startLine": 156, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ee2685e0dd8b915c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/doc.py", - "uriBaseId": "%SRCROOT%", - "index": 61 - }, - "region": { - "startLine": 198, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "dc3de37663611de5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/doc.py", - "uriBaseId": "%SRCROOT%", - "index": 61 - }, - "region": { - "startLine": 237, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c4fb9c3f0a0b2836:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/doc.py", - "uriBaseId": "%SRCROOT%", - "index": 61 - }, - "region": { - "startLine": 264, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "78cd4ab58152afd1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/auth.py", - "uriBaseId": "%SRCROOT%", - "index": 62 - }, - "region": { - "startLine": 28, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f25d1d58a20c12d4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/auth.py", - "uriBaseId": "%SRCROOT%", - "index": 62 - }, - "region": { - "startLine": 46, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f25d1d58a20c12d4:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId": "%SRCROOT%", - "index": 63 - }, - "region": { - "startLine": 50, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "414f17ac8438289b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId": "%SRCROOT%", - "index": 63 - }, - "region": { - "startLine": 78, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8d184fdfe802a540:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/contrib/messages/storage/cache.py", - "uriBaseId": "%SRCROOT%", - "index": 63 - }, - "region": { - "startLine": 96, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8690259969c4c8d1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/dashboard/views.py", - "uriBaseId": "%SRCROOT%", - "index": 64 - }, - "region": { - "startLine": 137, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "56099298deadfcf2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/creation.py", - "uriBaseId": "%SRCROOT%", - "index": 65 - }, - "region": { - "startLine": 23, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "56cbdc15b9998de0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 66 - }, - "region": { - "startLine": 251, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d7baf7b62571a9c5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 66 - }, - "region": { - "startLine": 263, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1b3a7758614a2ed8:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 66 - }, - "region": { - "startLine": 271, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3a34ec5d5c696f14:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 66 - }, - "region": { - "startLine": 285, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "55cfe24c10b8268d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 128, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "94f83b98c7fb1dda:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 232, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a703f9c47dfb54c3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 314, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e3a8180017bdfc1d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 404, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "77a1d33f1c21af5f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 444, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a2b5328e4639f586:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 512, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c119c5118dd992cf:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/management/commands/runcron.py", - "uriBaseId": "%SRCROOT%", - "index": 68 - }, - "region": { - "startLine": 67, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8d21852609d05c14:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 39, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "144a16144af3af60:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 80, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "84adaf5e05c06a13:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 92, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f590d8b93cc3435c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 104, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1613cbc206d2afae:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 122, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6974d1703ad60ae4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 305, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "bcc4d5d2c04093cc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 392, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e04a327cc02c031b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 425, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2ad3de1c212e25e3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 462, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9f12a3c421d8d343:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - }, - "region": { - "startLine": 90, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f962a2a42065ae19:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - }, - "region": { - "startLine": 99, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "989a0e961381a81:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - }, - "region": { - "startLine": 110, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7ae2991e477facef:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - }, - "region": { - "startLine": 135, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "87b417ec2a4edeb0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/user.py", - "uriBaseId": "%SRCROOT%", - "index": 20 - }, - "region": { - "startLine": 167, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9d7243019a9ec0cf:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 155, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "47638e17692c7de9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 160, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e0a91f765f5fc963:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 184, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6f5d7852428831e3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 238, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "98c587087550d03d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 333, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8571a9e44abdf687:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 336, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "47638e17692c7de9:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 344, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "dc529fb79f64ce4b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 384, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7ff8ba67dee7f162:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 534, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d4ca1f29a67898da:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 685, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "db8fa06ca75b2ce7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 737, - "startColumn": 29, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "cb2648b3c107c6e2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 743, - "startColumn": 29, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "198e6288819700e9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 748, - "startColumn": 29, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f7ec80bfde0c2cc9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 862, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7c44fcbb4522f3a5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 907, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "64d7fafcb3bca8db:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 936, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "651a424cbec8d186:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 942, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "aa24b7f1271a4027:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 951, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a03c4ab6b9d896e4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 1002, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e39c47ea34327ad:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 1181, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "81f45636cce68212:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 1188, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "504f40f11df2a3b6:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 1201, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b328df2fbb0711eb:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 1370, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4bdd2e5a59294751:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 1542, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3f0649538db70fca:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/rendering.py", - "uriBaseId": "%SRCROOT%", - "index": 70 - }, - "region": { - "startLine": 100, - "startColumn": 33, - "endColumn": 40 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e78907b7438e8324:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/rendering.py", - "uriBaseId": "%SRCROOT%", - "index": 70 - }, - "region": { - "startLine": 107, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "47a422a0b21ebd98:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/rendering.py", - "uriBaseId": "%SRCROOT%", - "index": 70 - }, - "region": { - "startLine": 112, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "5e19378f2a82396d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/rss.py", - "uriBaseId": "%SRCROOT%", - "index": 71 - }, - "region": { - "startLine": 94, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2b9fd8a86c96dad0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/models.py", - "uriBaseId": "%SRCROOT%", - "index": 72 - }, - "region": { - "startLine": 49, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9b3f52bfdc4e3141:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/models.py", - "uriBaseId": "%SRCROOT%", - "index": 72 - }, - "region": { - "startLine": 51, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4e4c2f6cfb46ca3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/models.py", - "uriBaseId": "%SRCROOT%", - "index": 72 - }, - "region": { - "startLine": 68, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9b3f52bfdc4e3141:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/models.py", - "uriBaseId": "%SRCROOT%", - "index": 72 - }, - "region": { - "startLine": 70, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4e4c2f6cfb46ca3:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/views.py", - "uriBaseId": "%SRCROOT%", - "index": 1 - }, - "region": { - "startLine": 44, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4ccf9c90f40cd907:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/search/views.py", - "uriBaseId": "%SRCROOT%", - "index": 1 - }, - "region": { - "startLine": 53, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "58887756c7a6060:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 152, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6e045dbaec7b8c30:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 327, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66f787c7b210b99e:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 357, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "36ece0f6bb8ef105:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 402, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66f787c7b210b99e:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 463, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66f787c7b210b99e:3", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 525, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66f787c7b210b99e:4", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 573, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7fec538b51e3ff67:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 580, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7c760041a3be2819:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 586, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4ec3dd8944ecaa41:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 614, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "83c28c9ecbe543e3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 622, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66f787c7b210b99e:5", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/modules.py", - "uriBaseId": "%SRCROOT%", - "index": 73 - }, - "region": { - "startLine": 876, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "677f643e395a32f1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/templatetags/user.py", - "uriBaseId": "%SRCROOT%", - "index": 74 - }, - "region": { - "startLine": 80, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "aed96671b45fa18a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/trash/views.py", - "uriBaseId": "%SRCROOT%", - "index": 75 - }, - "region": { - "startLine": 33, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "67d4a2e23fb83240:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/trash/views.py", - "uriBaseId": "%SRCROOT%", - "index": 75 - }, - "region": { - "startLine": 44, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9e1fb519692d2bb0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - }, - "region": { - "startLine": 62, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e65bca39a5c8a4cf:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - }, - "region": { - "startLine": 171, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1b4a1f61ad9ca844:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - }, - "region": { - "startLine": 178, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8b019906edcae7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - }, - "region": { - "startLine": 184, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "fcc5776137ba1260:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - }, - "region": { - "startLine": 333, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a40b5eac2a6c6d83:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/views.py", - "uriBaseId": "%SRCROOT%", - "index": 76 - }, - "region": { - "startLine": 577, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "985f81e01017ec99:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/documents/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 77 - }, - "region": { - "startLine": 92, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b2ccd701e3d2f168:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/documents/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 77 - }, - "region": { - "startLine": 125, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "17d75a313c9b26ff:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/documents/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 77 - }, - "region": { - "startLine": 162, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a800cad1583cb797:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/events/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 78 - }, - "region": { - "startLine": 119, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6461b6d413ec1352:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/events/rendering.py", - "uriBaseId": "%SRCROOT%", - "index": 79 - }, - "region": { - "startLine": 187, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a25cb99b7015c47e:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 80 - }, - "region": { - "startLine": 212, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "28f60cf0c9a0eb31:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 81 - }, - "region": { - "startLine": 102, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b7ea6a3b785033b7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/models.py", - "uriBaseId": "%SRCROOT%", - "index": 82 - }, - "region": { - "startLine": 54, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "484f1e650998fb93:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 30 - }, - "region": { - "startLine": 19, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ada7cb1e0b3d62d3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/views.py", - "uriBaseId": "%SRCROOT%", - "index": 83 - }, - "region": { - "startLine": 545, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7a3f149799964bfe:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/views.py", - "uriBaseId": "%SRCROOT%", - "index": 83 - }, - "region": { - "startLine": 584, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a722a9e705711ac:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/finance/views.py", - "uriBaseId": "%SRCROOT%", - "index": 83 - }, - "region": { - "startLine": 1012, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2fdd552ab3369a15:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/integration.py", - "uriBaseId": "%SRCROOT%", - "index": 84 - }, - "region": { - "startLine": 177, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d737c2bd64ef51c0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/integration.py", - "uriBaseId": "%SRCROOT%", - "index": 84 - }, - "region": { - "startLine": 222, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "29c16372b823bd3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/models.py", - "uriBaseId": "%SRCROOT%", - "index": 85 - }, - "region": { - "startLine": 179, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b6c3fd6fd62d761f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/objects.py", - "uriBaseId": "%SRCROOT%", - "index": 86 - }, - "region": { - "startLine": 76, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6c183b72da411b2b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/identities/objects.py", - "uriBaseId": "%SRCROOT%", - "index": 86 - }, - "region": { - "startLine": 97, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4c323d3a18944a68:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 87 - }, - "region": { - "startLine": 111, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a8550e7340f312c1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 87 - }, - "region": { - "startLine": 177, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "95a3c749eac11f03:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/emails.py", - "uriBaseId": "%SRCROOT%", - "index": 88 - }, - "region": { - "startLine": 32, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f42355e78470c774:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/emails.py", - "uriBaseId": "%SRCROOT%", - "index": 88 - }, - "region": { - "startLine": 45, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "36a4a5c93c32ef39:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 46, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b5c977af69dc696d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 54, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4f9bb42dd3abfa7a:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 64, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b8a6af68ceab4eb7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 74, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "e0257be7907fb7a4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 82, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d7bff7835d34d63c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 89, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1d6e815ea4738e9c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 195, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c0d82879b58561eb:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 89 - }, - "region": { - "startLine": 219, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "6dea4795b97393d4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 268, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1b282db78669bf39:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 338, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "92fd8e07b42235d6:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 342, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "211cf57b172b3d92:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 420, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1b282db78669bf39:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 492, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "95a3c749eac11f03:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 691, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "42b0350cbed1c795:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 699, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "fb27c7a2ace93b95:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/messaging/views.py", - "uriBaseId": "%SRCROOT%", - "index": 90 - }, - "region": { - "startLine": 708, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a5dde4d44a87af5d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/news/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 91 - }, - "region": { - "startLine": 39, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "7ddc4c4614f86b06:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/ajax.py", - "uriBaseId": "%SRCROOT%", - "index": 92 - }, - "region": { - "startLine": 19, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9a5b3e9a0fe66db8:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/identities.py", - "uriBaseId": "%SRCROOT%", - "index": 93 - }, - "region": { - "startLine": 39, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ae60edfe222e275b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/identities.py", - "uriBaseId": "%SRCROOT%", - "index": 93 - }, - "region": { - "startLine": 60, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ae60edfe222f2750:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/south_migrations/0002_updaterecords.py", - "uriBaseId": "%SRCROOT%", - "index": 42 - }, - "region": { - "startLine": 29, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "15f09d78b1e5d187:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/reports/templatetags/reports.py", - "uriBaseId": "%SRCROOT%", - "index": 94 - }, - "region": { - "startLine": 56, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1346b102bc01c79b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 248, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c64e0b9bb18ae5bb:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 258, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "98d6b0581c4efb4c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 266, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4272cdcf94b57749:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 275, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b9066916db660f16:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 284, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d608b6258e82d1f5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 293, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "29f4bab899879282:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 301, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "734c2457d6047d6f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 323, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ccb6a709dcc4e40c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 658, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "23150aca18bbf8bf:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 776, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "28b2c28bdfea48d0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 787, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9e6b6ab598d49e34:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 909, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b298a616c563702c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 920, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ac668d5e73a868b4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 1000, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "170f03882d01fd28:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 1013, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3d4ee1cb0e406c22:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/models.py", - "uriBaseId": "%SRCROOT%", - "index": 96 - }, - "region": { - "startLine": 93, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "98a36ac479066d6d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/models.py", - "uriBaseId": "%SRCROOT%", - "index": 96 - }, - "region": { - "startLine": 240, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "eaa2bac5ddf7dc59:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/south_migrations/0003_treeiocurrency.py", - "uriBaseId": "%SRCROOT%", - "index": 51 - }, - "region": { - "startLine": 21, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a78d4dbf7cb92261:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 57, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9e1fb519692d2bb0:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 82, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9e1fb519692d2bb0:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 109, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "9e1fb519692d2bb0:3", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 561, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "140a71e797006cf2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1160, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8f570f2cbb592cbb:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1220, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f93dacb71d5e313f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1232, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "500d69f53271b1ab:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1241, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "5a98c007805188ab:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1249, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "15a2c86c9ead1c58:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1257, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b80a0592f17c429d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1265, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "707d046d35dd6ff3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 1273, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b02ef4947e73a8ed:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 226, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a76e3001527f6484:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 230, - "startColumn": 29, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "5c79f9bf337171ee:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 240, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a76e3001527f6484:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 244, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "371488c3535acdc1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 250, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4c64263a280bbb5d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 254, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1926186369632fa3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/api/handlers.py", - "uriBaseId": "%SRCROOT%", - "index": 97 - }, - "region": { - "startLine": 258, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ab2e570e7cb2a2ab:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 78, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1edcf31275d94464:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 229, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4d148d3429cdeb7c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 242, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a5c264487e43ac89:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 249, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "371488c3535acd98:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 255, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d37dc280f2024ba1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/identities.py", - "uriBaseId": "%SRCROOT%", - "index": 99 - }, - "region": { - "startLine": 40, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "ae60edfe222e275b:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/models.py", - "uriBaseId": "%SRCROOT%", - "index": 100 - }, - "region": { - "startLine": 261, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3f99222c3a51fbae:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/models.py", - "uriBaseId": "%SRCROOT%", - "index": 100 - }, - "region": { - "startLine": 288, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1a5b7d7045f50769:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/models.py", - "uriBaseId": "%SRCROOT%", - "index": 100 - }, - "region": { - "startLine": 310, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b037293c431beb0c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/models.py", - "uriBaseId": "%SRCROOT%", - "index": 100 - }, - "region": { - "startLine": 346, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "f32e9d6b12cb1ba2:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/models.py", - "uriBaseId": "%SRCROOT%", - "index": 100 - }, - "region": { - "startLine": 363, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "aed7e2b05091582:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 579, - "startColumn": 25, - "endColumn": 32 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "711ce4a34a0e60ba:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 583, - "startColumn": 33, - "endColumn": 40 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "3ee64eebc3cf395c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 593, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "da35acc2a2e50566:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 597, - "startColumn": 29, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "371488c3535acdc1:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 604, - "startColumn": 21, - "endColumn": 28 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "67ce6437bb233b5:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 608, - "startColumn": 29, - "endColumn": 36 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "8401c53955286c3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 612, - "startColumn": 17, - "endColumn": 24 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "1823f94ec6dae24d:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 947, - "startColumn": 9, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "fda92497510560fe:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/catch-base-exception", - "ruleIndex": 6, - "rule": { - "id": "com.lgtm/python-queries:py/catch-base-exception", - "index": 6 - }, - "message": { - "text": "Except block directly handles BaseException." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/views.py", - "uriBaseId": "%SRCROOT%", - "index": 101 - }, - "region": { - "startLine": 956, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "949a5bf83bc22ed7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'request' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/api/utils.py", - "uriBaseId": "%SRCROOT%", - "index": 102 - }, - "region": { - "startLine": 271, - "startColumn": 5, - "endColumn": 12 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "af824a257a10910:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'cursor' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/creation.py", - "uriBaseId": "%SRCROOT%", - "index": 65 - }, - "region": { - "startLine": 74, - "startColumn": 13, - "endColumn": 19 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "d18a825397cdc820:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'initial_db' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/management/commands/installdb.py", - "uriBaseId": "%SRCROOT%", - "index": 19 - }, - "region": { - "startLine": 20, - "startColumn": 9, - "endColumn": 19 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "5936187629651b2f:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'db' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/management/commands/installdb.py", - "uriBaseId": "%SRCROOT%", - "index": 19 - }, - "region": { - "startLine": 28, - "startColumn": 9, - "endColumn": 11 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "956a65aac87b5404:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'exit_code' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/management/commands/installdb.py", - "uriBaseId": "%SRCROOT%", - "index": 19 - }, - "region": { - "startLine": 88, - "startColumn": 13, - "endColumn": 22 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "c23b411726cb3cb9:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'profile' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/models.py", - "uriBaseId": "%SRCROOT%", - "index": 69 - }, - "region": { - "startLine": 383, - "startColumn": 13, - "endColumn": 20 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "162dbeaa20206db4:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'task_time_slot' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/projects/views.py", - "uriBaseId": "%SRCROOT%", - "index": 103 - }, - "region": { - "startLine": 1000, - "startColumn": 13, - "endColumn": 27 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "2758f94b9f18b78c:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'skip' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 586, - "startColumn": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "bda85ac655b296f3:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'skip' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 940, - "startColumn": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "4335185cfcdc7454:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'skip' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 95 - }, - "region": { - "startLine": 1065, - "startColumn": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "88682b35a7669fee:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'query' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 468, - "startColumn": 13, - "endColumn": 18 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "fe2da3e1da30eff7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'query' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 470, - "startColumn": 13, - "endColumn": 18 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "acb4b8b8be67ba96:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'query' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 473, - "startColumn": 9, - "endColumn": 14 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "831dd3a4e02b1ff7:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'query' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 658, - "startColumn": 13, - "endColumn": 18 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "fe2da3e1da30eff7:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'query' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 660, - "startColumn": 13, - "endColumn": 18 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "acb4b8b8be67ba96:2", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'query' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/sales/views.py", - "uriBaseId": "%SRCROOT%", - "index": 2 - }, - "region": { - "startLine": 663, - "startColumn": 9, - "endColumn": 14 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "cdde85fbe701c6cb:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'skip' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 568, - "startColumn": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "66a23547dd5705fc:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/unused-local-variable", - "ruleIndex": 7, - "rule": { - "id": "com.lgtm/python-queries:py/unused-local-variable", - "index": 7 - }, - "message": { - "text": "The value assigned to local variable 'skip' is never used." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/services/forms.py", - "uriBaseId": "%SRCROOT%", - "index": 98 - }, - "region": { - "startLine": 602, - "startColumn": 13, - "endColumn": 17 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "a620629e15bfe1ba:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/conflicting-attributes", - "ruleIndex": 8, - "rule": { - "id": "com.lgtm/python-queries:py/conflicting-attributes", - "index": 8 - }, - "message": { - "text": "Base classes have conflicting values for attribute 'clear': Function clear and Builtin-method clear.\nBase classes have conflicting values for attribute 'get': Function get and Builtin-method get.\nBase classes have conflicting values for attribute 'has_key': Function has_key and Builtin-method has_key.\nBase classes have conflicting values for attribute 'items': Function items and Builtin-method items.\nBase classes have conflicting values for attribute 'iteritems': Function iteritems and Builtin-method iteritems.\nBase classes have conflicting values for attribute 'iterkeys': Function iterkeys and Builtin-method iterkeys.\nBase classes have conflicting values for attribute 'itervalues': Function itervalues and Builtin-method itervalues.\nBase classes have conflicting values for attribute 'pop': Function pop and Builtin-method pop.\nBase classes have conflicting values for attribute 'popitem': Function popitem and Builtin-method popitem.\nBase classes have conflicting values for attribute 'setdefault': Function setdefault and Builtin-method setdefault.\nBase classes have conflicting values for attribute 'update': Function update and Builtin-method update.\nBase classes have conflicting values for attribute 'values': Function values and Builtin-method values." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/db.py", - "uriBaseId": "%SRCROOT%", - "index": 9 - }, - "region": { - "startLine": 27, - "endColumn": 46 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b2335b88158aecda:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/missing-equals", - "ruleIndex": 9, - "rule": { - "id": "com.lgtm/python-queries:py/missing-equals", - "index": 9 - }, - "message": { - "text": "The class 'DatabaseDict' does not override '__eq__', but adds the new attribute [store](1)." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/db.py", - "uriBaseId": "%SRCROOT%", - "index": 9 - }, - "region": { - "startLine": 27, - "endColumn": 46 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "b2335b88158aecda:1", - "primaryLocationStartColumnFingerprint": "0" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/db/db.py", - "uriBaseId": "%SRCROOT%", - "index": 9 - }, - "region": { - "startLine": 50, - "startColumn": 9, - "endColumn": 19 - } - }, - "message": { - "text": "store" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/import-and-import-from", - "ruleIndex": 10, - "rule": { - "id": "com.lgtm/python-queries:py/import-and-import-from", - "index": 10 - }, - "message": { - "text": "Module 'html5lib' is imported with both 'import' and 'import from'" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/sanitizer.py", - "uriBaseId": "%SRCROOT%", - "index": 104 - }, - "region": { - "startLine": 8, - "endColumn": 16 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "51e646e3cea382ab:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/import-and-import-from", - "ruleIndex": 10, - "rule": { - "id": "com.lgtm/python-queries:py/import-and-import-from", - "index": 10 - }, - "message": { - "text": "Module 'os' is imported with both 'import' and 'import from'" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio_project/settings.py", - "uriBaseId": "%SRCROOT%", - "index": 3 - }, - "region": { - "startLine": 12, - "endColumn": 10 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "116aabf63cf0f10e:1", - "primaryLocationStartColumnFingerprint": "0" - } - }, - { - "ruleId": "com.lgtm/python-queries:py/stack-trace-exposure", - "ruleIndex": 11, - "rule": { - "id": "com.lgtm/python-queries:py/stack-trace-exposure", - "index": 11 - }, - "message": { - "text": "[Error information](1) may be exposed to an external user" - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 395, - "startColumn": 29, - "endColumn": 33 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "fe0bcea7958de1b6:1", - "primaryLocationStartColumnFingerprint": "20" - }, - "codeFlows": [ - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 50, - "endColumn": 64 - } - }, - "message": { - "text": "ControlFlowNode for Attribute()" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 38, - "endColumn": 66 - } - }, - "message": { - "text": "ControlFlowNode for Dict" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 13, - "endColumn": 67 - } - }, - "message": { - "text": "ControlFlowNode for Dict" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 395, - "startColumn": 29, - "endColumn": 33 - } - }, - "message": { - "text": "ControlFlowNode for data" - } - } - } - ] - } - ] - }, - { - "threadFlows": [ - { - "locations": [ - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 50, - "endColumn": 64 - } - }, - "message": { - "text": "ControlFlowNode for Attribute()" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 46, - "endColumn": 65 - } - }, - "message": { - "text": "ControlFlowNode for str()" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 38, - "endColumn": 66 - } - }, - "message": { - "text": "ControlFlowNode for Dict" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 13, - "endColumn": 67 - } - }, - "message": { - "text": "ControlFlowNode for Dict" - } - } - }, - { - "location": { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 395, - "startColumn": 29, - "endColumn": 33 - } - }, - "message": { - "text": "ControlFlowNode for data" - } - } - } - ] - } - ] - } - ], - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/middleware/chat.py", - "uriBaseId": "%SRCROOT%", - "index": 0 - }, - "region": { - "startLine": 394, - "startColumn": 50, - "endColumn": 64 - } - }, - "message": { - "text": "Error information" - } - } - ] - }, - { - "ruleId": "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "ruleIndex": 12, - "rule": { - "id": "com.lgtm/python-queries:py/incomplete-url-substring-sanitization", - "index": 12 - }, - "message": { - "text": "'[googlemail.com](1)' may be at an arbitrary position in the sanitized URL." - }, - "locations": [ - { - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 73, - "startColumn": 37, - "endColumn": 63 - } - } - } - ], - "partialFingerprints": { - "primaryLocationLineHash": "46034441645cb7d5:1", - "primaryLocationStartColumnFingerprint": "28" - }, - "relatedLocations": [ - { - "id": 1, - "physicalLocation": { - "artifactLocation": { - "uri": "treeio/core/mail.py", - "uriBaseId": "%SRCROOT%", - "index": 67 - }, - "region": { - "startLine": 73, - "startColumn": 37, - "endColumn": 53 - } - }, - "message": { - "text": "googlemail.com" - } - } - ] - } - ], - "columnKind": "unicodeCodePoints", - "properties": { - "semmle.formatSpecifier": "2.1.0", - "semmle.sourceLanguage": "python" - } - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:3455f9bd58e13d671c518be27f1dbfcfa130d09e51c3a2f5dc9f2f86edb9a691 +size 500055