mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'habitrpg/lib/node',
|
|
],
|
|
rules: {
|
|
'prefer-regex-literals': 'warn',
|
|
'import/no-extraneous-dependencies': 'off',
|
|
},
|
|
};
|