Skip to content

Commit

Permalink
Lint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JrMasterModelBuilder committed Oct 10, 2023
1 parent 4e95ce4 commit e5f7aa3
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/bundle/mac/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ void describe('bundle/mac/app', () => {
cleanBundlesDir('mac', 'app', name, d);
const getSkeleton = async () => getPackageFile(name);

// eslint-disable-next-line no-loop-func
void describe(name, () => {
void it('simple', async () => {
const dir = await getDir('simple');
Expand Down
1 change: 0 additions & 1 deletion src/bundle/windows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ void describe('bundle/windows', () => {
cleanBundlesDir('windows', type, name, d);
const getSkeleton = async () => getPackageFile(name);

// eslint-disable-next-line no-loop-func
void describe(name, () => {
void it('simple', async () => {
const dir = await getDir('simple');
Expand Down
1 change: 0 additions & 1 deletion src/projector/mac/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ void describe('projector/mac/app', () => {
cleanProjectorDir('mac', 'app', name, d);
const getSkeleton = async () => getPackageFile(name);

// eslint-disable-next-line no-loop-func
void describe(name, () => {
void it('simple', async () => {
const dir = await getDir('simple');
Expand Down
1 change: 0 additions & 1 deletion src/projector/windows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ void describe('projector/windows', () => {
cleanProjectorDir('windows', type, name, d);
const getSkeleton = async () => getPackageFile(name);

// eslint-disable-next-line no-loop-func
void describe(name, () => {
void it('simple', async () => {
const dir = await getDir('simple');
Expand Down
2 changes: 0 additions & 2 deletions src/util/mac.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const machoTypes = [
void describe('util/mac', () => {
void describe('machoTypesData', () => {
for (const {name, data, format} of machoTypes) {
// eslint-disable-next-line no-loop-func
void it(name, () => {
deepStrictEqual(machoTypesData(data), format);
});
Expand All @@ -67,7 +66,6 @@ void describe('util/mac', () => {

void describe('machoAppLauncher', () => {
for (const {name, format, launcher} of machoTypes) {
// eslint-disable-next-line no-loop-func
void it(name, async () => {
const data = await machoAppLauncher(format);
deepStrictEqual(machoTypesData(data), format);
Expand Down
1 change: 0 additions & 1 deletion src/util/windows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const launcherTypes = [
void describe('util/windows', () => {
void describe('windowsLauncher', () => {
for (const [type, hash] of launcherTypes) {
// eslint-disable-next-line no-loop-func
void it(type, async () => {
const data = await windowsLauncher(type);
strictEqual(sha256(data), hash);
Expand Down

0 comments on commit e5f7aa3

Please sign in to comment.