1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="author" content="Stephan Müller" />
<title>pylint</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.min.css" />
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<span class="navbar-brand mb-0 h1">pylint</span>
</nav>
<section class="content">
<div class="container-fluid mt-3">
<div class="card bg-light mb-3">
<div class="card-header">
<h5 class="mb-0">a</h5>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover table-sm">
<thead class="thead-light">
<tr scope="col">
<th></th>
<th data-field="line">Line</th>
<th data-field="column">Column</th>
<th data-field="type">Type</th>
<th data-field="obj">Object</th>
<th data-field="message">Message</th>
<th data-field="symbol">Symbol</th>
<th data-field="message_id">Message Id</th>
</tr>
</thead>
<tbody>
<tr class="table-primary">
<td><a href="https://example.org/blob/branch/a#L1" class="btn btn-light btn-sm" role="button"><i class="fas fa-code"></i> Source</a></td>
<td>1</td>
<td>0</td>
<td>convention</td>
<td></td>
<td>Line too long (1/2)</td>
<td>line-too-long</td>
<td>C0301</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card bg-light mb-3">
<div class="card-header">
<h5 class="mb-0">b</h5>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover table-sm">
<thead class="thead-light">
<tr scope="col">
<th></th>
<th data-field="line">Line</th>
<th data-field="column">Column</th>
<th data-field="type">Type</th>
<th data-field="obj">Object</th>
<th data-field="message">Message</th>
<th data-field="symbol">Symbol</th>
<th data-field="message_id">Message Id</th>
</tr>
</thead>
<tbody>
<tr class="table-primary">
<td><a href="https://example.org/blob/branch/b#L2" class="btn btn-light btn-sm" role="button"><i class="fas fa-code"></i> Source</a></td>
<td>2</td>
<td>0</td>
<td>convention</td>
<td></td>
<td>Line too long (1/2)</td>
<td>line-too-long</td>
<td>C0301</td>
</tr>
<tr class="table-primary">
<td><a href="https://example.org/blob/branch/b#L1" class="btn btn-light btn-sm" role="button"><i class="fas fa-code"></i> Source</a></td>
<td>1</td>
<td>0</td>
<td>convention</td>
<td></td>
<td>Line too long (1/2)</td>
<td>line-too-long</td>
<td>C0301</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</body>
</html>
|