Add eslint and run linter in workflow

This commit is contained in:
Carlos Fernandez 2026-04-20 17:47:37 -04:00
parent f850cbda76
commit 69adeb7e0e
23 changed files with 974 additions and 36 deletions

View file

@ -173,7 +173,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
// Overriden to only disable text inputs by default.
// Everything else is done by checking @root.editable in the sheet
const form = this.form;
for (const input of form.querySelectorAll("input:not([type=search]), .editor.prosemirror")) {
for (const input of form.querySelectorAll('input:not([type=search]), .editor.prosemirror')) {
input.disabled = disabled;
}
}