mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
const base = require('../../../../test/.eslintrc.js');
|
|
|
|
base.rules = base.rules || {};
|
|
|
|
// TODO find a way to let eslint understand webpack aliases
|
|
base.rules['import/no-unresolved'] = 'off';
|
|
|
|
module.exports = base;
|