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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@gincat/eslint-core

v0.0.4

Published

This is a package designed to enforce code standards for internal proyects at Gincat Digital. It contains all the necessary ESLint rules for JavaScript and TypeScript projects that follow the coding conventions established by our group. This package ensur

Downloads

11

Readme

@gincat/eslint-core

This is a package designed to enforce code standards for internal proyects at Gincat Digital. It contains all the necessary ESLint rules for JavaScript and TypeScript projects that follow the coding conventions established by our group. This package ensures that code adheres to a consistent style, promoting maintainability, readability, and best practices across all projects.

Installation

Install @gincat/eslint-core with npm:

npm install --save-dev @gincat/eslint-core 

Make sure to have installed ESLint v9.22 or greater for full compatibility.

Usage

To use the ESLint rules from @gincat/eslint-core in your project, you need to extend the ESLint configuration by adding it to your eslint.config.js or equivalent ESLint configuration file.

Example configuration for JavaScript projects:

import { defineConfig } from 'eslint/config';
import { jsConfigs } from '@gincat/eslint-core';

export default defineConfig(
	...jsConfigs,
	// Your other configurations...
);

Example configuration for TypeScript projects:

The TypeScript configuration extends all base rules from jsConfigs so you don't have to include it in your configs.

import tseslint from 'typescript-eslint';
import { tsConfigs } from '@gincat/eslint-core';

export default tseslint.config(
	...tsConfigs,
	{
		languageOptions: {
			parserOptions: { project: './tsconfig.json' },
			parser: tseslint.parser,
		},
	},
	// Your other configurations...
);

Available Rules

This package includes the base linting rules that are specific to the coding style and standards used by Gincat Digital. These rules cover various aspects of JavaScript and TypeScript code, such as:

  • Code formatting
  • Best practices
  • Error handling
  • Variable declarations and naming conventions
  • Function and method usage
  • Imports and exports
  • TypeScript-specific rules

For a complete list of the rules included in this package, you can refer to the configuration or consult the code within the package itself.

Plugins Included

Plugins used in JavaScript configs:

@stylistic/eslint-plugin-js
eslint-plugin-import

Plugins used in TypeScript configs:

@stylistic/eslint-plugin-js
@stylistic/eslint-plugin-ts
eslint-plugin-import
typescript-eslint

Compatibility

  • JavaScript (ES6+)
  • TypeScript (with @typescript-eslint/parser)
  • ESlint 9.22+

Ensure you have the necessary dependencies for TypeScript if you are working with TypeScript files.

License

This repository is licensed under the MIT License. See the LICENSE file for more details.