Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@typescript-eslint/types
Advanced tools
The @typescript-eslint/types package is part of the TypeScript-ESLint project, which provides a TypeScript parser for ESLint and utilities for working with TypeScript and ESLint together. This specific package contains TypeScript definitions for ESLint-specific types, making it easier to work with ESLint configurations, rules, and plugins in a TypeScript environment. It is primarily used by developers who are creating custom ESLint rules or configurations and want to leverage TypeScript's type-checking capabilities for better development experience.
AST Node Types
Provides TypeScript interfaces for AST nodes generated by the parser. This is useful for writing type-safe code that inspects or manipulates the AST, such as custom ESLint rules.
import { TSESTree } from '@typescript-eslint/types';
function processNode(node: TSESTree.Node) {
if (node.type === 'Identifier') {
console.log('Found an identifier:', node.name);
}
}
Rule Definition Helpers
Includes types for defining ESLint rules in a TypeScript-friendly way, making it easier to create custom rules with type safety.
import { TSESLint } from '@typescript-eslint/types';
const myRule: TSESLint.RuleModule<'my-error', []> = {
meta: {
type: 'problem',
docs: {
description: 'My custom rule',
recommended: 'error'
}
},
create(context) {
return {
Identifier(node) {
context.report({
node,
messageId: 'my-error'
});
}
};
}
};
This package provides a set of utilities for working with TypeScript and ESLint, including ESLint rule helpers and AST utilities. It is similar to @typescript-eslint/types but offers a broader range of tools for rule development and AST manipulation.
An older package that aimed to add TypeScript support to ESLint before the official @typescript-eslint project was established. It provides some similar functionalities but is now deprecated in favor of the more comprehensive and up-to-date @typescript-eslint suite of packages.
@typescript-eslint/types
Types for the TypeScript-ESTree AST spec
This package exists to help us reduce cycles and provide lighter-weight packages at runtime.
This is an internal package to the typescript-eslint monorepo. You likely don't want to use it directly.
š See https://typescript-eslint.io for docs on typescript-eslint.
FAQs
Types for the TypeScript-ESTree AST spec
The npm package @typescript-eslint/types receives a total of 31,442,411 weekly downloads. As such, @typescript-eslint/types popularity was classified as popular.
We found that @typescript-eslint/types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Ā It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.