Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH 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
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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.