Skip to content

Commit

Permalink
Updated dependencies and version
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Mar 6, 2022
1 parent a120bd6 commit 9ab9587
Show file tree
Hide file tree
Showing 13 changed files with 26,562 additions and 12,057 deletions.
49 changes: 49 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"root": true,
"ignorePatterns": [
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/no-output-native": [
"off"
],
"@angular-eslint/component-selector": [
"off"
],
"@angular-eslint/directive-selector": [
"off"
],
"@angular-eslint/no-conflicting-lifecycle": [
"off"
],
"@angular-eslint/no-empty-lifecycle-method": [
"off"
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ bundles/
package/
npm-debug.log
node_modules/
.angular/
.vs/

example/dist/
example/npm-debug.log
example/node_modules/
.idea
File renamed without changes.
26 changes: 12 additions & 14 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": false
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
Expand Down Expand Up @@ -39,7 +42,6 @@
"optimization": true,
"outputHashing": "none",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand Down Expand Up @@ -77,13 +79,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"projects/app/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"projects/app/src/**/*.ts",
"projects/app/src/**/*.html"
]
}
}
Expand All @@ -96,7 +96,7 @@
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/lib/tsconfig.json",
"project": "projects/lib/ng-package.json"
Expand All @@ -107,13 +107,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"projects/lib/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"projects/lib/src/**/*.ts",
"projects/lib/src/**/*.html"
]
}
}
Expand Down
Loading

0 comments on commit 9ab9587

Please sign in to comment.