npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-config-socratech

v0.0.2

Published

![Portada Socratech](https://user-images.githubusercontent.com/87479242/206247313-27356947-69bf-4dda-af17-6e95b4898f29.png)

Downloads

31

Readme

Portada Socratech

eslint-config-socratech

Descripción

Paquete de reglas preconfiguradas para eslint (linter de JavaScript).

Reglas

  • no-var: “error”
    • Prohíbe el uso de var para declarar variables, recomendando el uso de let o const en su lugar.
  • no-unused-vars: “error”
    • Marca como error cualquier variable que haya sido declarada pero nunca utilizada en el código.
  • prefer-const: “error”
    • Obliga a usar const en lugar de let cuando una variable no va a ser reasignada.
  • quotes: [“error”, “single”]
    • Fuerza el uso de comillas simples (') en lugar de comillas dobles para las cadenas de texto.
  • semi: [“error”, “always”]
    • Obliga a incluir un punto y coma (;) al final de cada sentencia.
  • indent: [“error”, 2]
    • Fuerza la indentación de dos espacios para todos los niveles de sangría.
  • eol-last: [“error”, “always”]
    • Exige que haya una línea en blanco al final de cada archivo.
  • no-trailing-spaces: “error”
    • Marca como error cualquier espacio en blanco que quede al final de las líneas de código.
  • brace-style: [“error”, “1tbs”]
    • Obliga a usar el estilo de llaves “one true brace style” (1TBS), en el que la llave de apertura está en la misma línea que la declaración de control (como if, for, while), y la llave de cierre en una nueva línea.
  • eqeqeq: [“error”, “always”]
    • Obliga al uso de igualdad estricta (=== y !==) en lugar de la igualdad abstracta (== y !=) para evitar errores de tipo.
  • arrow-parens: [“error”, “always”]
    • Exige que las funciones flecha siempre lleven paréntesis, incluso cuando sólo tienen un parámetro.
  • no-duplicate-imports: “error”
    • Prohíbe la duplicación de importaciones de un mismo módulo, asegurando que cada módulo se importe una única vez.

Instalación

npm install -D eslint-config-socratech

Uso

Si tienes un archivo archivo .eslintrc.js:

module.exports = {
  extends: ["eslint-config-socratech"],
};

Si tienes un archivo .eslint.config.js:

import socratechConfig from 'eslint-config-socratech';

export default [
    rules: {
      ...socratechConfig.rules
    },
];

Descubre más sobre nosotros 🌍