Final state from MSSE692

This commit is contained in:
Kerry Johnson 2021-03-13 09:03:38 -07:00
parent 4b98dddb1f
commit 7e7390b454
6 changed files with 3768 additions and 2596 deletions

View file

@ -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

File diff suppressed because it is too large Load diff

View file

@ -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",

View file

@ -49,7 +49,7 @@ import { UserModule } from './modules/user/user.module';
],
bootstrap: [AppComponent],
providers: []
providers: [],
})
export class AppModule {
}

View file

@ -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() {
}
}
}

View file

@ -113,7 +113,10 @@
"component-selector": [
true,
"element",
"ngx",
[
"ngx",
"org"
],
"kebab-case"
],
"ban": [