Skip to content

Commit

Permalink
Move line 'use babel'; to start of file
Browse files Browse the repository at this point in the history
This is required by babel in order to work properly.
  • Loading branch information
fisherdog1 committed May 31, 2022
1 parent 3f3cdde commit 1af8c0e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/editor-handler.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use babel';

/****************************************************************************************************************************
****************************
* @file FILE.EXT
Expand All @@ -18,8 +20,6 @@
************************************************************************************************************************
********************************/

'use babel';

/* eslint-disable import/no-unresolved, no-loop-func */
/* global atom, document */

Expand Down
4 changes: 2 additions & 2 deletions lib/iTrace-atom.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use babel';

/****************************************************************************************************************************
****************************
* @file FILE.EXT
Expand All @@ -18,8 +20,6 @@
************************************************************************************************************************
********************************/

'use babel';

/* eslint-disable import/no-unresolved, no-loop-func */
/* global atom */

Expand Down
4 changes: 2 additions & 2 deletions lib/session.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use babel';

/****************************************************************************************************************************
****************************
* @file FILE.EXT
Expand All @@ -18,8 +20,6 @@
************************************************************************************************************************
********************************/

'use babel';

import uuid from 'uuid';
import fs from 'fs';
import EditorHandler from './editor-handler';
Expand Down
4 changes: 2 additions & 2 deletions lib/xml-writer.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use babel';

/****************************************************************************************************************************
****************************
* @file FILE.EXT
Expand All @@ -18,8 +20,6 @@
************************************************************************************************************************
********************************/

'use babel';

const xmlbuilder = require('xmlbuilder');
import * as fs from 'fs';

Expand Down

0 comments on commit 1af8c0e

Please sign in to comment.