@nodecfdi/eslint-config
v2.3.4
Published
Configuración base de Eslint para proyectos NodeCfdi
Downloads
1,159
Readme
@nodecfdi/eslint-config
La libreria
@nodecfdi/eslint-config
exporta la configuración base para eslint usada en los proyectos de NodeCfdi.
:us: The documentation of this project is in spanish as this is the natural language for intended audience.
:mexico: La documentación del proyecto está en español porque ese es el lenguaje principal de los usuarios.
Instalación
NPM
npm i -D eslint @nodecfdi/eslint-config
Yarn
yarn add -D eslint @nodecfdi/eslint-config
PNPM
pnpm add -D eslint @nodecfdi/eslint-config
Uso básico
Para habilitar está configuración crea un archivo eslint.config.js
en el root del proyecto y copia y pega el siguiente contenido:
// @ts-check
import nodecfdiConfig from '@nodecfdi/eslint-config';
const { defineConfig } = nodecfdiConfig(import.meta.dirname);
export default defineConfig(); // Puedes agregar mas reglas o bloques de configuracion dentro de esta funcion
Si deseas aplicar algun ajuste puedes y/o personalización puedes hacerlo de la siguiente manera:
// @ts-check
import nodecfdiConfig from '@nodecfdi/eslint-config';
const { defineConfig } = nodecfdiConfig(import.meta.dirname, {
vitest: true,
adonisjs: true,
sonarjs: true,
n: true,
});
export default defineConfig(); // Puedes agregar mas reglas o bloques de configuracion dentro de esta funcion
Ajustes y personalizaciones
type NodecfdiSettings = {
/**
* Vitest support.
*/
vitest?: boolean;
/**
* AdonisJS support.
*/
adonisjs?: boolean;
/**
* Vue3 Support.
*/
vue?:
| boolean
| {
globalComponentsPatterns?: string[];
globalPropertiesPatterns?: string[];
};
/**
* SonarJS support
*/
sonarjs?: boolean;
/**
* Node using n support
*/
n?: boolean;
/**
* Typescript eslint project service option
*/
projectService?: boolean | ProjectServiceOptions;
/**
* This setting apply some ignore patterns to the whole config.
*/
ignores?: {
/**
* Some commonly ignored folders.
*/
recommended?: boolean;
/**
* With this setting, Nodecfdi will ignore all the files that are currently ignored by git. Chances are that if you are ignoring a file in git, you don't want to lint it, which usually is the case with temporary and autogenerated files.
*/
inheritedFromGitignore?: boolean;
/**
* Include additional ignore files paths or regex paths to ignore on current eslint config
*/
additional?: string[];
};
};
Soporte
Puedes obtener soporte abriendo un ticket en Github.
Adicionalmente, esta librería pertenece a la comunidad OcelotlStudio, así que puedes usar los mismos canales de comunicación para obtener ayuda de algún miembro de la comunidad.
Compatibilidad
Esta librería se mantendrá compatible con al menos la versión con soporte activo de Node más reciente y soporte activo de Typescript más reciente.
También utilizamos Versionado Semántico 2.0.0 por lo que puedes usar esta librería sin temor a romper tu aplicación.
Contribuciones
Las contribuciones con bienvenidas. Por favor lee CONTRIBUTING para más detalles y recuerda revisar el archivo CHANGELOG.
Copyright and License
The @nodecfdi/eslint-config
library is copyright © NodeCfdi - OcelotlStudio and licensed for use under the MIT License (MIT). Please see LICENSE for more information.