mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 07:30:12 +01:00
Final state from MSSE692
This commit is contained in:
parent
4b98dddb1f
commit
7e7390b454
6 changed files with 3768 additions and 2596 deletions
14
angular.json
14
angular.json
|
|
@ -144,14 +144,12 @@
|
|||
}
|
||||
},
|
||||
"lint": {
|
||||
"builder": "@angular-devkit/build-angular:tslint",
|
||||
"builder": "@angular-eslint/builder:lint",
|
||||
"options": {
|
||||
"tsConfig": [
|
||||
"src/tsconfig.app.json",
|
||||
"src/tsconfig.spec.json"
|
||||
],
|
||||
"typeCheck": true,
|
||||
"exclude": []
|
||||
"lintFilePatterns": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.html"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -190,4 +188,4 @@
|
|||
"prefix": "ngx"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
6322
package-lock.json
generated
6322
package-lock.json
generated
File diff suppressed because it is too large
Load diff
11
package.json
11
package.json
|
|
@ -79,6 +79,11 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~0.1100.7",
|
||||
"@angular-eslint/builder": "1.2.0",
|
||||
"@angular-eslint/eslint-plugin": "1.2.0",
|
||||
"@angular-eslint/eslint-plugin-template": "1.2.0",
|
||||
"@angular-eslint/schematics": "1.2.0",
|
||||
"@angular-eslint/template-parser": "1.2.0",
|
||||
"@angular/cli": "^11.0.7",
|
||||
"@angular/compiler-cli": "^11.0.9",
|
||||
"@angular/language-service": "11.0.9",
|
||||
|
|
@ -90,8 +95,14 @@
|
|||
"@types/jasminewd2": "2.0.3",
|
||||
"@types/leaflet": "1.2.3",
|
||||
"@types/node": "^12.11.1",
|
||||
"@typescript-eslint/eslint-plugin": "4.3.0",
|
||||
"@typescript-eslint/parser": "4.3.0",
|
||||
"codelyzer": "^6.0.0",
|
||||
"conventional-changelog-cli": "1.3.4",
|
||||
"eslint": "^7.6.0",
|
||||
"eslint-plugin-import": "2.22.1",
|
||||
"eslint-plugin-jsdoc": "30.7.6",
|
||||
"eslint-plugin-prefer-arrow": "1.2.2",
|
||||
"husky": "0.13.3",
|
||||
"jasmine-core": "~3.6.0",
|
||||
"jasmine-spec-reporter": "~5.0.0",
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import { UserModule } from './modules/user/user.module';
|
|||
|
||||
],
|
||||
bootstrap: [AppComponent],
|
||||
providers: []
|
||||
providers: [],
|
||||
})
|
||||
export class AppModule {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
import { Component, Input, OnInit } from "@angular/core";
|
||||
import { OrganizationDataSharingAgreement } from "thingbook-api/lib";
|
||||
import { OrganizationService } from "../../organization.service";
|
||||
import { Component, Input, OnInit } from '@angular/core';
|
||||
import { OrganizationDataSharingAgreement } from 'thingbook-api/lib';
|
||||
import { OrganizationService } from '../../organization.service';
|
||||
|
||||
@Component({
|
||||
selector: 'org-data-sharing-agreement',
|
||||
templateUrl: './data-sharing-agreement.component.html',
|
||||
styleUrls: ['./data-sharing-agreement.component.scss']
|
||||
styleUrls: ['./data-sharing-agreement.component.scss'],
|
||||
})
|
||||
export class DataSharingAgreementComponent implements OnInit {
|
||||
|
||||
|
|
@ -18,4 +18,4 @@ export class DataSharingAgreementComponent implements OnInit {
|
|||
ngOnInit() {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -113,7 +113,10 @@
|
|||
"component-selector": [
|
||||
true,
|
||||
"element",
|
||||
"ngx",
|
||||
[
|
||||
"ngx",
|
||||
"org"
|
||||
],
|
||||
"kebab-case"
|
||||
],
|
||||
"ban": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue