Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
fix: Fix usage of let
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommy Leunen committed Nov 7, 2016
1 parent fb9a93f commit a925e3f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ root: true
extends:
- "airbnb-base"

parserOptions:
sourceType: 'script'

rules:
strict: ['error', 'global']
indent: ['error', 4, { SwitchCase: 1, VariableDeclarator: 1, outerIIFEBody: 1 }]
max-len: ['error', 120, 4, {
ignoreUrls: true,
Expand Down
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const path = require('path');
const resolve = require('resolve');
const mapModule = require('babel-plugin-module-resolver').mapModule;
Expand Down
3 changes: 3 additions & 0 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/* eslint-env jest */

'use strict';

const path = require('path');
const resolverPlugin = require('../src/index');

Expand Down

0 comments on commit a925e3f

Please sign in to comment.