Fix build, clean up lint comments.

This commit is contained in:
Will Scullin 2019-03-26 21:12:05 -07:00
parent 6a5fd9cf0c
commit 2963f116ce
No known key found for this signature in database
GPG Key ID: 9092A5C0A673416B
15 changed files with 4 additions and 30 deletions

View File

@ -1,5 +1,3 @@
/*exported base64_encode, base64_decode */
export function base64_encode (data) {
// Twacked by Will Scullin to handle arrays of "bytes"

View File

@ -1,5 +1,3 @@
/*exported IntBasicDump */
export default function IntBasicDump(mem)
{
var _mem = mem;

View File

@ -1,6 +1,6 @@
// From https://github.com/Klaus2m5/6502_65C02_functional_tests
/*exported Test6502 */
/*global toHex */
import { toHex } from '../util';
var LOG = false;

View File

@ -1,7 +1,6 @@
// From https://github.com/Klaus2m5/6502_65C02_functional_tests
/*exported Test65C02 */
/*global toHex */
import { toHex } from '../util';
var LOG = false;

View File

@ -1,5 +1,3 @@
/*exported apple2_charset */
var apple2_charset = [
0x00,0x1c,0x22,0x2a,0x2e,0x2c,0x20,0x1e,
0x00,0x08,0x14,0x22,0x22,0x3e,0x22,0x22,

View File

@ -1,5 +1,3 @@
/*exported Apple2eROM*/
export default function Apple2eROM()
{
var rom = [

View File

@ -1,5 +1,3 @@
/*exported Apple2eEnhancedROM */
export default function Apple2eEnhancedROM()
{
var rom = [

View File

@ -1,5 +1,3 @@
/* exported apple2enh_charset */
var apple2enh_charset = [
0x1c,0x22,0x2a,0x3a,0x1a,0x02,0x3c,0x00,
0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,

View File

@ -1,5 +1,3 @@
/*exported Apple2jROM */
export default function Apple2jROM()
{
var rom = [

View File

@ -1,5 +1,3 @@
/* exported apple2j_charset */
var apple2j_charset = [
0xff,0xef,0xe1,0xed,0xd5,0xfb,0xf7,0xef,
0xff,0xfb,0xc7,0xf7,0xc1,0xf7,0xf7,0xef,

View File

@ -1,5 +1,3 @@
/*exported apple2lc_charset */
var apple2lc_charset = [
0x1c,0x22,0x2a,0x2a,0x2c,0x20,0x1e,0x00,
0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,

View File

@ -1,5 +1,3 @@
/*exported pigfont_charset */
var pigfont_charset = [
0x00,0x1c,0x22,0x2a,0x2e,0x20,0x1e,0x00,
0x0c,0x12,0x21,0x3f,0x21,0x21,0x00,0x00,

View File

@ -1,5 +1,3 @@
/*exported rmfont_charset */
var rmfont_charset = [
0x3c,0x42,0x59,0x55,0x55,0x39,0x02,0x3c,
0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,

View File

@ -1,5 +1,3 @@
/*exported SYMBOLS */
var SYMBOLS = {
/*
0x00: 'GOWARM',

View File

@ -6,8 +6,7 @@ module.exports =
devtool: 'source-map',
entry: {
main2: path.resolve('js/main2.js'),
main2e: path.resolve('js/main2e.js'),
test: path.resolve('js/test.js')
main2e: path.resolve('js/main2e.js')
},
output: {
path: path.resolve('dist/')