Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zakimohammed/ng-eslint
Angular project for setting up ESLint
https://github.com/zakimohammed/ng-eslint
angular angular-eslint eslint
Last synced: 27 days 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 (12 months ago)
- Default Branch: master
- Last Pushed: 2024-02-10T19:50:35.000Z (12 months ago)
- Last Synced: 2024-11-10T10:12:45.224Z (3 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