
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
eslint-plugin-nwronski
Advanced tools
This repo contains the linting rules for my projects that use ESLint with TypeScript.
Install ESLint and TSLint (for now) for your project.
yarn add --dev eslint tslint
Install the eslint-plugin-nwronski
module and dependencies
yarn add --dev eslint-plugin-nwronski
Create a .eslintrc.json
file in the root folder of your project and add the following:
.eslintrc.json
{
"extends": "plugin:nwronski/base",
"parserOptions": {
"project": "./tsconfig.json"
}
}
Add lint
script to your package.json
:
package.json
{
"scripts": {
"lint": "eslint --fix \"./src/**/*.ts\""
}
}
Install the eslint-plugin-nwronski
module and dependencies
yarn add --dev @angular-eslint/eslint-plugin @angular-eslint/template-parser @angular-eslint/eslint-plugin-template @angular-eslint/builder eslint-plugin-nwronski
Create a .eslintrc.json
file in the root folder of your project and add the following:
.eslintrc.json
{
"extends": "plugin:nwronski/angular",
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "nw",
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "nw",
"style": "camelCase"
}
]
}
}
Create a tsconfig.eslint.json
file in the root folder of your project and add the following:
tsconfig.eslint.json
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true
},
"include": [
"src",
"e2e"
]
}
Add lint
script to your package.json
:
package.json
{
"scripts": {
"lint": "ng lint --fix",
}
}
Add ESLint configuration for Angular CLI to your angular.json
:
angular.json
{
"projects": {
"my-fancy-project": {
"prefix": "nw",
"architect": {
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"eslintConfig": ".eslintrc.json",
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.component.html"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
}
}
Install the eslint-plugin-nwronski
module and dependencies
yarn add --dev eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y eslint-plugin-jest eslint-plugin-nwronski
Create a .eslintrc.json
file in the root folder of your project and add the following:
.eslintrc.json
{
"extends": "plugin:nwronski/react",
"parserOptions": {
"project": "./tsconfig.json"
}
}
Add lint
script to your package.json
:
package.json
{
"scripts": {
"lint": "eslint --fix \"./src/**/*.{ts,tsx}\""
}
}
yarn run lint
yarn add --dev lint-staged
.lintstagedrc.json
{
"*.{ts,tsx}": [
"eslint --fix"
]
}
.vscode/settings.json
{
"eslint.options": {
"extensions": [
".ts",
".html",
".tsx"
]
}
}
FAQs
ESLint rule configuration for JavaScript projects
The npm package eslint-plugin-nwronski receives a total of 0 weekly downloads. As such, eslint-plugin-nwronski popularity was classified as not popular.
We found that eslint-plugin-nwronski demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.