move to standard linter for simpler configuration

This commit is contained in:
JFH
2021-12-28 11:02:29 -03:00
parent 258e2bd6a1
commit fdcfc8a253
251 changed files with 19760 additions and 19935 deletions

View File

@@ -1,10 +1,10 @@
import SePlainAlertDialog from './SePlainAlertDialog.js';
import SePlainAlertDialog from './SePlainAlertDialog.js'
const seAlert = (text) => {
const dialog = new SePlainAlertDialog();
dialog.textContent = text;
dialog.choices = [ 'Ok' ];
dialog.open();
};
const dialog = new SePlainAlertDialog()
dialog.textContent = text
dialog.choices = ['Ok']
dialog.open()
}
window.seAlert = seAlert;
window.seAlert = seAlert