fix linting
Some checks failed
Angular Build / build (push) Has been cancelled

This commit is contained in:
2026-03-20 21:02:02 +01:00
parent d484239429
commit 893a13a8f2
30 changed files with 1936 additions and 3359 deletions

View File

@@ -22,9 +22,7 @@
"base": "dist/wgenerator"
},
"index": "src/index.html",
"polyfills": [
"src/polyfills.ts"
],
"polyfills": ["src/polyfills.ts"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "less",
"assets": [
@@ -40,17 +38,9 @@
"src/assets",
"src/manifest.webmanifest"
],
"styles": [
"src/custom-theme.scss",
"src/styles/styles.less",
"src/styles/shadow.less"
],
"styles": ["src/custom-theme.scss", "src/styles/styles.less", "src/styles/shadow.less"],
"scripts": [],
"allowedCommonJsDependencies": [
"lodash",
"docx",
"qrcode"
]
"allowedCommonJsDependencies": ["lodash", "docx", "qrcode"]
},
"configurations": {
"production": {
@@ -99,11 +89,15 @@
"options": {
"runner": "vitest",
"tsConfig": "tsconfig.spec.json",
"setupFiles": [
"src/test-vitest.ts"
],
"setupFiles": ["src/test-vitest.ts"],
"runnerConfig": true
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
}
}
}