eslint-config-aether
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

Eslint Config Aether

npm version

A custom code style for ESLint.

Preview

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();

	}

});

Installation

npm install eslint-config-aether

Usage

eslint.config.js

import aether from "eslint-config-aether";
export default [...aether];

Package Sidebar

Install

npm i eslint-config-aether

Weekly Downloads

19

Version

2.0.2

License

Zlib

Unpacked Size

7.99 kB

Total Files

7

Last publish

Collaborators

  • vanruesc