Merge pull request #8 from wwelling/tslint-warnings

Looks good, merging
This commit is contained in:
Art Lowel
2016-12-05 14:24:16 +01:00
committed by GitHub
20 changed files with 69 additions and 66 deletions

View File

@@ -27,7 +27,3 @@ Currently this contains the [Angular 2 Universal Starter](https://github.com/ang
## AoT and Prod ## AoT and Prod
- `npm run build:prod:ngc` to compile the ngfactory files and build prod - `npm run build:prod:ngc` to compile the ngfactory files and build prod

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -1,5 +1,6 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<title>DSpace</title> <title>DSpace</title>
<meta charset="UTF-8"> <meta charset="UTF-8">
@@ -10,6 +11,7 @@
<base href="/"> <base href="/">
</head> </head>
<body> <body>
<ds-app> <ds-app>
@@ -18,4 +20,5 @@
<script async src="/main.bundle.js"></script> <script async src="/main.bundle.js"></script>
</body> </body>
</html> </html>

View File

@@ -24,5 +24,7 @@
}, },
"compileOnSave": false, "compileOnSave": false,
"buildOnSave": false, "buildOnSave": false,
"atom": { "rewriteTsconfig": false } "atom": {
"rewriteTsconfig": false
}
} }

View File

@@ -23,5 +23,7 @@
}, },
"compileOnSave": false, "compileOnSave": false,
"buildOnSave": false, "buildOnSave": false,
"atom": { "rewriteTsconfig": false } "atom": {
"rewriteTsconfig": false
}
} }

View File

@@ -6,13 +6,13 @@
"directive-selector": [ "directive-selector": [
true, true,
"attribute", "attribute",
"dspace", "ds",
"camelCase" "camelCase"
], ],
"component-selector": [ "component-selector": [
true, true,
"element", "element",
"dspace", "ds",
"kebab-case" "kebab-case"
], ],
"use-input-property-decorator": true, "use-input-property-decorator": true,
@@ -27,7 +27,7 @@
"pipe-naming": [ "pipe-naming": [
true, true,
"camelCase", "camelCase",
"dspace" "ds"
], ],
"component-class-suffix": true, "component-class-suffix": true,
"directive-class-suffix": true, "directive-class-suffix": true,