Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
VM logs (#1362)
Browse files Browse the repository at this point in the history
* refactor(vm): get rid of BaseModel for VM model (#1180)

PR close #1104

* build(code-coverage): enable source-maps by default (#1347)

This is a workaround to fix code coverage mapping

* Update README.md

* Create version

* Update README.md

* Update README.md

* feat(navigation): rework navigation menu (#1333)

PR close #1235

* feat(config-validation): add config validators (#1309)

* feat(config-validation): add config validators

* revert security group template interface

* add more validation

* remove allowReorderingSidenav validation, use uniqueItems

* Update vm-colors.scheme.json

* style: update app code style (#1359)

* Add prettier

* Prettier formatted

* Work in progress

* Fix tsc errors and lint errors

* Ann few more rules and changes to codebase

* Add precommit hook

* Run prettier on entire codebase

* Run prettier

* Fix lint error

* fix bug about grouping

* Fix bugs

* Remove unused files

* fix(misc): semantic errors

* fix(lint)
  • Loading branch information
Vladimir Shakhov authored Oct 23, 2018
1 parent 6953691 commit d3a85af
Show file tree
Hide file tree
Showing 859 changed files with 13,662 additions and 14,482 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package.json
reports
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
}
188 changes: 91 additions & 97 deletions README.md

Large diffs are not rendered by default.

34 changes: 7 additions & 27 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"assets": [
"src/config",
"src/i18n",
"src/css",
"src/img",
"src/agreements"
],
"assets": ["src/config", "src/i18n", "src/css", "src/img", "src/agreements"],
"styles": [
"node_modules/@mdi/font/css/materialdesignicons.min.css",
"src/style/app.scss"
Expand Down Expand Up @@ -96,30 +90,20 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"sourceMap": true,
"styles": [
"node_modules/@mdi/font/css/materialdesignicons.min.css",
"src/style/app.scss"
],
"scripts": [],
"assets": [
"src/config",
"src/i18n",
"src/css",
"src/img",
"src/agreements"
]
"assets": ["src/config", "src/i18n", "src/css", "src/img", "src/agreements"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
Expand All @@ -144,12 +128,8 @@
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"e2e/tsconfig.e2e.json"
],
"exclude": [
"**/node_modules/**"
]
"tsConfig": ["e2e/tsconfig.e2e.json"],
"exclude": ["**/node_modules/**"]
}
}
}
Expand Down
Loading

0 comments on commit d3a85af

Please sign in to comment.