19.0.2 • Published 10 months ago
@kidwen/eslint-config-angular v19.0.2
eslint-angular
eslint for angular project
Quick Start
Follow the latest Getting Started guide on https://angular.io/ in order to install the Angular CLI
install this package in your project
# use npm npm install @kidwen/eslint-config-angular@latest --save-dev # use yarn yarn add @kidwen/eslint-config-angular@latest --devadd
tsconfig.eslint.jsonfile like this{ "extends": "./tsconfig.app.json", "include": [ // adjust "includes" to what makes sense for you and your project "src/**/*.ts", "projects/**/*.ts", ] }add
eslint.config.jsonfile like thisconst tseslint = require('typescript-eslint'); module.exports = tseslint.config( ...kidwenlint, { files: ['**/*.ts'], rules: { // your rules }, } );
Test
git clone https://github.com/kidwen/eslint-config-angular.git
cd eslint-config-angular
yarn
yarn linkcd example/lint
yarn
yarn link @kidwen/eslint-config-angular
yarn lint