Added prettier and eslint

This commit is contained in:
2024-03-06 19:10:55 +03:00
parent 9e6cff1055
commit 0970591d02
6 changed files with 1175 additions and 3 deletions

View File

@@ -2,7 +2,10 @@
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"packageManager": "pnpm"
"packageManager": "pnpm",
"schematicCollections": [
"@angular-eslint/schematics"
]
},
"newProjectRoot": "projects",
"projects": {
@@ -97,6 +100,15 @@
],
"scripts": []
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}