Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.