
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
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.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.