dylan-morales
v1.1.0
Published
A simple NPM package that prints my name to the console. # installation To install the package globally, run:npm install -g dylan # Usage Run the following command to print the name: npx dylan # ESLint Integration In this project, ESLint has been in
Readme
description
A simple NPM package that prints my name to the console.
installation
To install the package globally, run:npm install -g dylan
Usage
Run the following command to print the name: npx dylan
ESLint Integration
In this project, ESLint has been integrated to help enforce code quality and maintain consistent coding standards. Below are the steps taken to set up and use ESLint:
Installation of ESLint
ESLint was added as a development dependency by running the following command:
npm install eslint --save-dev
Configuring ESLint
After installing ESLint, the configuration was initialized using: npm init @eslint/config
