Skip to content

Commit 1ed7b6e

Browse files
authored
Merge pull request #306 from Aozasa/fix/ci-lint
自動テストのLintのエラーの修正
2 parents 83c5918 + a4f9aee commit 1ed7b6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/lib/ruby-to-blocks-converter/ev3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const EV3Converter = {
9494
args.length === 2 && args[0].type === 'sym' &&
9595
rubyBlockArgs && rubyBlockArgs.length === 0 &&
9696
rubyBlock) {
97-
switch(args[0].value) {
97+
switch (args[0].value) {
9898
case 'ev3_button_pressed':
9999
if (this._isStringOrBlock(args[1])) {
100100
block = this._createBlock('ev3_whenButtonPressed', 'hat');

src/lib/ruby-to-blocks-converter/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import MeshConverter from './mesh';
2929
import SmalrubotS1Converter from './smalrubot_s1';
3030
import BoostConverter from './boost';
3131
import TranslateConverter from './translate';
32-
import MakeyMakeyConverter from './makeymakey'
32+
import MakeyMakeyConverter from './makeymakey';
3333

3434
const messages = defineMessages({
3535
couldNotConvertPremitive: {

src/lib/ruby-to-blocks-converter/makeymakey.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const MakeyMakeyConverter = {
2929
if (this._isStringOrBlock(args[1])) {
3030
block = this._createBlock('makeymakey_whenCodePressed', 'hat');
3131
this._addInput(
32-
block,
32+
block,
3333
'SEQUENCE',
3434
this._createFieldBlock('makeymakey_menu_SEQUENCE', 'SEQUENCE', args[1])
3535
);

0 commit comments

Comments
 (0)