eslint-config-aesthetic-coder

2.0.10 • Public • Published

🔧 ESlint aesthetic configuration

eslint

📝 About

You can customize this configuration to fit your specific needs by disabling or enabling rules, or by changing the severity of the rules. You can also add additional rules that are not included in the style guides.

(back to top)


📚 Table of content

(back to top)


⚡️ Requirements

  • node >= 18.16.0
  • git >= 2.38
  • pnpm >= 8.2.0

(back to top)


📦 Installation

Run this command to install eslint and the plugin.

pnpm i -D eslint eslint-config-aesthetic-coder

(back to top)


🚀 Usage

To use this plugin put in your eslint config file this lines of codes.

js - javascript

{
  "root": true,
  "extends": "aesthetic-coder"
}

ts - typescript

{
  "root": true,
  "extends": [
    "aesthetic-coder",
    "aesthetic-coder/typescript",
  ]
}

tsx - jsx

{
  "root": true,
  "extends": [
    "aesthetic-coder",
    "aesthetic-coder/typescript",
    "aesthetic-coder/jsx_a11y",
  ]
}

qwik

{
  "root": true,
  "extends": [
    "aesthetic-coder",
    "aesthetic-coder/typescript",
    "aesthetic-coder/jsx_a11y",
    "aesthetic-coder/qwik",
  ]
}

(back to top)


⚡️ Scripts

The following scripts are available in the package.json:

  • preinstall: This script is for only allow pnpm as package manager
  • postinstall: This script is for setting up the git hooks and validate the error after commit to github
  • type-check: This script is for type checking the typescript files
  • lint-eslint: This script is for format and lint all js ts files
  • lint-markdown: This script is for format and lint all markdown files
  • lint: This script is for format and lint all the files
  • build: This script is for build the package
  • release: This script is for generate a new release in github

(back to top)


📦 Packages

Dependencies

  • typescript - TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.
  • eslint - ESLint is an open source project that helps you find and fix problems with your JavaScript code.
  • rimraf - A rm -rf util for nodejs

Development dependencies

(back to top)


🗃️ Contact

footer

(back to top)

Package Sidebar

Install

npm i eslint-config-aesthetic-coder

Weekly Downloads

2

Version

2.0.10

License

MIT

Unpacked Size

219 kB

Total Files

110

Last publish

Collaborators

  • luiscoderdev