-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "fixing merge conflicts""
This reverts commit 0199444.
- Loading branch information
1 parent
0199444
commit 7d2294e
Showing
18 changed files
with
530 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: "2" | ||
languages: | ||
TypeScript: true | ||
JavaScript: true | ||
plugins: | ||
nodesecurity: | ||
enabled: true | ||
eslint: | ||
enabled: true | ||
tslint: | ||
enabled: true | ||
config: tslint.json | ||
scss-lint: | ||
enabled: true | ||
ratings: | ||
paths: | ||
- "**.js" | ||
- "**.ts" | ||
- "**.css" | ||
- "**.scss" | ||
exclude_paths: | ||
- "protractor/" | ||
- ".*" | ||
- "*config.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
linters: | ||
|
||
# configuring the linter to best practices | ||
DuplicateProperty: | ||
ignore_consecutive: | ||
- background | ||
- transition | ||
|
||
# loosening the linter for the personal styles of our local devs | ||
HexNotation: | ||
enabled: false | ||
StringQuotes: | ||
enabled: false | ||
ColorKeyword: | ||
enabled: false | ||
Comment: | ||
enabled: false | ||
LeadingZero: | ||
enabled: false | ||
PropertySortOrder: | ||
enabled: false | ||
ImportPath: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// classes ref: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes | ||
export class GraphService { | ||
|
||
generateGraph() { | ||
console.log('graph initialization'); | ||
console.log('graph initialization'); | ||
console.log('graph initialization'); | ||
public generateGraph() { | ||
console.log("graph initialization"); | ||
console.log("graph initialization"); | ||
console.log("graph initialization"); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
import { enableProdMode } from '@angular/core'; | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
import { enableProdMode } from "@angular/core"; | ||
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; | ||
|
||
import { AppModule } from './app/app.module'; | ||
import { AppModule } from "./app/app.module"; | ||
|
||
|
||
if (process.env.NODE_ENV === 'production') { | ||
if (process.env.NODE_ENV === "production") { | ||
enableProdMode(); | ||
} | ||
platformBrowserDynamic().bootstrapModule(AppModule) | ||
.catch(err => console.log(err)); | ||
.catch((err) => console.log(err)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Evergreen browsers require these | ||
import 'core-js/es7/reflect'; | ||
import "core-js/es7/reflect"; | ||
// Zone JS is required by default for angular itself | ||
import 'zone.js/dist/zone'; | ||
import "zone.js/dist/zone"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// Angular | ||
import '@angular/platform-browser'; | ||
import '@angular/platform-browser-dynamic'; | ||
import '@angular/core'; | ||
import '@angular/common'; | ||
import "@angular/common"; | ||
import "@angular/core"; | ||
import "@angular/platform-browser"; | ||
import "@angular/platform-browser-dynamic"; | ||
|
||
// RxJS | ||
import 'rxjs'; | ||
import "rxjs"; |
Oops, something went wrong.