https://github.com/zakimohammed/ng-eslint
Angular project for setting up ESLint
https://github.com/zakimohammed/ng-eslint
angular angular-eslint eslint
Last synced: about 2 months ago
JSON representation
Angular project for setting up ESLint
- Host: GitHub
- URL: https://github.com/zakimohammed/ng-eslint
- Owner: ZakiMohammed
- Created: 2024-02-10T06:58:50.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-10T19:50:35.000Z (over 2 years ago)
- Last Synced: 2025-10-14T20:33:44.877Z (8 months ago)
- Topics: angular, angular-eslint, eslint
- Language: TypeScript
- Homepage:
- Size: 269 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ng ESLint
Angular project for setting up ESLint.
## Run App
Below command will run the project:
```
npm start
```
## Initial Setup
Below command executed to perform initial setup:
```
ng new ng-eslint
```
## ESLint
Add ESLint to project:
```
ng add @angular-eslint/schematics
```
Run command:
```
npm run lint
```
Add new script:
```
"lint-html": "ng lint > eslint/report.html --format html --silent"
```
Add ESLint ignore file `.eslintignore`:
```
eslint/**
```
Refer: https://github.com/angular-eslint/angular-eslint