You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@chronoverse-eslint/typescript

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chronoverse-eslint/typescript

Comprehensive ESLint configuration for TypeScript projects focusing on type safety, code quality, and best practices

4.1.0
latest
Source
npmnpm
Version published
Weekly downloads
4
-73.33%
Maintainers
1
Weekly downloads
 
Created
Source

@chronoverse-eslint/typescript

npm version ESLint TypeScript License Demo

Installation

npm install -D @chronoverse-eslint/typescript eslint

Or using alternative package managers:

yarn add -D @chronoverse-eslint/typescript eslint
pnpm add -D @chronoverse-eslint/typescript eslint
bun add -D @chronoverse-eslint/typescript eslint

Usage

Add to your eslint.config.js:

import { typescript } from '@chronoverse-eslint/typescript/typescript-base';

const eslintConfig = [
	...typescript,
];

export default eslintConfig

Or with defineConfig:

import { typescript } from '@chronoverse-eslint/typescript/typescript-base';
import { defineConfig } from 'eslint/config';

const eslintConfig = defineConfig(typescript);

export default eslintConfig;

const eslintConfig = defineConfig([
	typescript,
]);

export default eslintConfig;

Or only-rules:

import { consistentRules } from '@chronoverse-eslint/typescript/consistent-rules';
import { extensionRules } from '@chronoverse-eslint/typescript/extension-rules';
import { tsSafeRules } from '@chronoverse-eslint/typescript/safe-rules';
import { tsdocRules } from '@chronoverse-eslint/typescript/tsdoc-rules';
import { typescriptRules } from '@chronoverse-eslint/typescript/typescript-rules';
import { typescriptTypeCheckRules } from '@chronoverse-eslint/typescript/typescript-type-check-rules';
import { defineConfig } from 'eslint/config';

const eslintConfig = defineConfig([
	{
		rules: {
			...consistentRules,
			...extensionRules,
			...tsSafeRules,
			...tsdocRules,
			...typescriptRules,
			...typescriptTypeCheckRules,
		},
	},
]);

export default eslintConfig;

Requirements

  • ESLint >=9.29.0
  • TypeScript >=5.8.3
  • Bun >=1.2.16
  • Node.js >=23.11.0

MIT © Chronoverse

Keywords

eslint

FAQs

Package last updated on 17 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts