Skip to content

Commit

Permalink
[meta] fix resolvers eslint by adding strict pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 18, 2021
1 parent d83a55d commit ae5f3ce
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resolvers/webpack/test/config.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/example.js
@@ -1,3 +1,5 @@
'use strict';

const path = require('path');

const resolve = require('../index').resolve;
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/extensions.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/externals.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/fallback.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/loaders.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/modules.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/packageMains.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/plugins.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down
2 changes: 2 additions & 0 deletions resolvers/webpack/test/root.js
@@ -1,3 +1,5 @@
'use strict';

const chai = require('chai');
const expect = chai.expect;
const path = require('path');
Expand Down

0 comments on commit ae5f3ce

Please sign in to comment.