Add eslintignore and adhere or be ignored
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
# possibly minified output
|
||||||
|
js
|
||||||
|
out
|
||||||
|
|
||||||
|
# libraries
|
||||||
|
jssrc/lib
|
||||||
|
|
||||||
|
# php generated file
|
||||||
|
jssrc/lang.js
|
||||||
+1
-1
@@ -228,7 +228,7 @@ window.Input = (function () {
|
|||||||
// Mouse events
|
// Mouse events
|
||||||
onMouseMove: function (x, y) {
|
onMouseMove: function (x, y) {
|
||||||
if (!opts.mt_move) return
|
if (!opts.mt_move) return
|
||||||
const b = mb1 ? 1 : mb2 ? 2 : mb3 ? 3 : 0;
|
const b = mb1 ? 1 : mb2 ? 2 : mb3 ? 3 : 0
|
||||||
const m = packModifiersForMouse()
|
const m = packModifiersForMouse()
|
||||||
Conn.send('m' + encode2B(y) + encode2B(x) + encode2B(b) + encode2B(m))
|
Conn.send('m' + encode2B(y) + encode2B(x) + encode2B(b) + encode2B(m))
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -47,9 +47,7 @@ const themes = [
|
|||||||
// should not be used to look up 0-15 (will return transparent)
|
// should not be used to look up 0-15 (will return transparent)
|
||||||
const colorTable256 = new Array(16).fill('rgba(0, 0, 0, 0)')
|
const colorTable256 = new Array(16).fill('rgba(0, 0, 0, 0)')
|
||||||
|
|
||||||
{
|
|
||||||
// fill color table
|
// fill color table
|
||||||
|
|
||||||
// colors 16-231 are a 6x6x6 color cube
|
// colors 16-231 are a 6x6x6 color cube
|
||||||
for (let red = 0; red < 6; red++) {
|
for (let red = 0; red < 6; red++) {
|
||||||
for (let green = 0; green < 6; green++) {
|
for (let green = 0; green < 6; green++) {
|
||||||
@@ -61,13 +59,11 @@ const colorTable256 = new Array(16).fill('rgba(0, 0, 0, 0)')
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// colors 232-255 are a grayscale ramp, sans black and white
|
// colors 232-255 are a grayscale ramp, sans black and white
|
||||||
for (let gray = 0; gray < 24; gray++) {
|
for (let gray = 0; gray < 24; gray++) {
|
||||||
let value = gray * 10 + 8
|
let value = gray * 10 + 8
|
||||||
colorTable256.push(`rgb(${value}, ${value}, ${value})`)
|
colorTable256.push(`rgb(${value}, ${value}, ${value})`)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
class TermScreen {
|
class TermScreen {
|
||||||
constructor () {
|
constructor () {
|
||||||
|
|||||||
+1
-1
@@ -48,7 +48,7 @@ function extend (defaults, options) {
|
|||||||
|
|
||||||
/** Escape string for use as literal in RegExp */
|
/** Escape string for use as literal in RegExp */
|
||||||
function rgxe (str) {
|
function rgxe (str) {
|
||||||
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&')
|
return str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&')
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Format number to N decimal places, output as string */
|
/** Format number to N decimal places, output as string */
|
||||||
|
|||||||
Reference in New Issue
Block a user