update codeclimate
getting "hit" for workspace/ duplication (needed for F5 specific stuff) made exception. also getting "hit" for upstream TODO/HACK in xterm.js, excluding compiled files.
This commit is contained in:
parent
fe7e523151
commit
fcfbf24d45
4 changed files with 6 additions and 3 deletions
3
.codeclimate.yaml
Normal file
3
.codeclimate.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
exclude_patterns:
|
||||
-"workspace/*"
|
||||
-"client/public/*"
|
|
@ -162,7 +162,7 @@
|
|||
height: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
html, body {
|
||||
body, html {
|
||||
font-family: helvetica, sans-serif, arial;
|
||||
font-size: 1em;
|
||||
color: #111;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
html, body {
|
||||
body, html {
|
||||
font-family: helvetica, sans-serif, arial;
|
||||
font-size: 1em;
|
||||
color: #111;
|
||||
|
|
|
@ -37,7 +37,7 @@ app.use(express.static(publicPath, expressOptions))
|
|||
|
||||
app.get('/reauth', function (req, res, next) {
|
||||
var r = req.headers.referer || '/'
|
||||
res.status(401).send('<!DOCTYPE html><html><head><meta http-equiv="refresh" content="0; url=' + r + '"></head><body bgcolor="#000"></body></html>');
|
||||
res.status(401).send('<!DOCTYPE html><html><head><meta http-equiv="refresh" content="0; url=' + r + '"></head><body bgcolor="#000"></body></html>')
|
||||
})
|
||||
|
||||
app.get('/ssh/host/:host?', function (req, res, next) {
|
||||
|
|
Loading…
Reference in a new issue