Skip to content

Commit b6a12a1

Browse files
committed
chore: lint fix
1 parent 4ba6dd0 commit b6a12a1

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

lib/header-view.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import { View } from 'atom-space-pen-views';
44

55
export default class HeaderView extends View {
6-
76
static content() {
87
return this.div({ class: 'header-view' }, () => {
98
this.span({ class: 'heading-title', outlet: 'title' });

lib/runner.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import fs from 'fs';
55
import path from 'path';
66

77
export default class Runner {
8-
98
// Public: Creates a Runner instance
109
//
1110
// * `scriptOptions` a {ScriptOptions} object instance

lib/script-options-view.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import _ from 'underscore';
66
import ScriptInputView from './script-input-view';
77

88
export default class ScriptOptionsView extends View {
9-
109
static content() {
1110
this.div({ class: 'options-view' }, () => {
1211
this.h4({ class: 'modal-header' }, 'Configure Run Options');

lib/script-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default class ScriptView extends MessagePanelView {
137137
showNoLanguageSpecified() {
138138
const err = $$(function () {
139139
this.p('You must select a language in the lower right, or save the file with an appropriate extension.',
140-
);
140+
);
141141
});
142142
this.handleError(err);
143143
}

0 commit comments

Comments
 (0)