mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
23 lines
454 B
JavaScript
23 lines
454 B
JavaScript
'use strict';
|
|
|
|
const path = require('node:path');
|
|
|
|
module.exports = {
|
|
globals: {
|
|
describe: 'readonly',
|
|
expect: 'readonly',
|
|
it: 'readonly',
|
|
xdescribe: 'readonly',
|
|
xit: 'readonly'
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*.{ts}'],
|
|
rules: {
|
|
'import/no-unresolved': 'off',
|
|
'import/no-extraneous-dependencies': 'off',
|
|
},
|
|
},
|
|
],
|
|
};
|