mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
lint common
This commit is contained in:
@@ -46,9 +46,10 @@ const rtlLanguages = [
|
||||
'ur', /* 'اردو', Urdu */
|
||||
'yi', /* 'ייִדיש', Yiddish */
|
||||
];
|
||||
for (const key in weapon) {
|
||||
|
||||
for (const key of Object.keys(weapon)) {
|
||||
const set = weapon[key];
|
||||
for (const weaponKey in set) {
|
||||
for (const weaponKey of Object.keys(set)) {
|
||||
const item = set[weaponKey];
|
||||
const oldnotes = item.notes;
|
||||
item.notes = lang => {
|
||||
|
||||
Reference in New Issue
Block a user