
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@livechat/eslint-plugin
Advanced tools
A package of linting rules used in TypeScript ESLint.
$ npm i --save-dev @livechat/eslint-plugin
{
"plugins": ["@livechat"],
"rules": {
"@livechat/no-declare": "error"
}
}
Name | Description |
---|---|
@livechat/no-declare | Forbids using 'declare' keyword |
Using 'declare' keyword may be forbidden for all or selected identifiers. You can use it for example to force another methods of declaring global variables, e.g. using 'import' forms.
type Options = {
onlyIdentifiers?: string[];
excludeIdentifiers?: string[];
};
const defaultOptions: Options = {
onlyIdentifiers: [];
excludeIdentifiers: [];
};
The rule accepts options with the following properties:
onlyIdentifiers
(optional) - If used, only the provided identifiers will be reported. All other identifiers declared with declare
keyword will be ignored.excludeIdentifiers
(optional) - If used, all identifiers will be reported except those provided in the array. If onlyIdentifiers
is used, this option is ignored.Don't use 'declare' keyword.
declare const someConst: any;
declare const window: { location };
declare const x, y, z: number;
import someConst from 'some-lib';
import { window } from 'utils/global-declarations';
const { x, y, z } = window;
Don't use 'declare' keyword for the provided identifiers.
{
"@livechat/no-declare": [ "error", { "onlyIdentifiers": [ "window" ] } ]
}
declare const window: any;
declare const window: { location };
import { window } from 'utils/global-declarations';
declare const someConst: any;
declare const x, y, z: number;
Don't use 'declare' keyword except for the provided identifiers. If onlyIdentifiers
is used, this option is ignored.
{
"@livechat/no-declare": [ "error", { "excludeIdentifiers": [ "someConst" ] } ]
}
declare const window: any;
declare const x, y, z: number;
import { window } from 'utils/global-declarations';
declare const someConst: any;
FAQs
Linting rules plugin for TypeScript ESLint
The npm package @livechat/eslint-plugin receives a total of 4 weekly downloads. As such, @livechat/eslint-plugin popularity was classified as not popular.
We found that @livechat/eslint-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 62 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.