A custom code style for ESLint.
const btn = document.getElementById("btn");
let count = 0;
function render() {
btn.innerText = `Count: ${count}`;
}
btn.addEventListener("click", () => {
// Count from 1 to 10.
if(count < 10) {
count += 1;
render();
}
});
npm install eslint-config-aether
import aether from "eslint-config-aether";
export default [...aether];