Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
eslint-plugin-strict-null-checks
Advanced tools
Eslint plugin that aims to reproduce strictNullCheck from tsconfig for easier migration
eslint-plugin-strict-null-checks
Eslint plugin that aims to reproduce strictNullChecks from tsconfig for easier migration and for projects that prefer to have it as a warning not an error.
Install eslint-plugin-strict-null-checks plugin locally.
$ npm install eslint-plugin-strict-null-checks --save-dev
To use this plugin you need to configure your eslint config with:
"parserOptions": {
"project": "./tsconfig.strictNullChecks.json"
},
"plugins": [
"strict-null-checks"
],
"rules": {
"strict-null-checks/all": "warn"
}
And create tsconfig.strictNullChecks.json
with
{
"compilerOptions": {
"strictNullChecks": true,
}
}
If you get this error:
Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser.
The file does not match your project config: .eslintrc.js.
The file must be included in at least one of the projects provided.
Add this line to your ESLint config:
ignorePatterns: ['.eslintrc.js'],
eslint-plugin-strict-null-checks
is licensed under the MIT License.
FAQs
Eslint plugin that aims to reproduce strictNullCheck from tsconfig for easier migration
We found that eslint-plugin-strict-null-checks demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.