Skip to content

Commit

Permalink
*add + sign to 'Add new class' button
Browse files Browse the repository at this point in the history
*fix linting and rest snapshot
*fix ts-lint issue: Compiler option 'extends' requires a value of type string according to: palantir/tslint#3643
  • Loading branch information
Ulman, Avi (au2811) authored and Roi ben haim (rb136m) committed Nov 3, 2018
1 parent af1545a commit 57f3e18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

# IDEs and editors
/.idea
*.iml
.project
.classpath
.c9/
Expand Down Expand Up @@ -51,3 +52,6 @@ reports

#dynamic configuration file
src/assets/config/hot-config.js

#stryker
.stryker-tmp/
2 changes: 1 addition & 1 deletion src/app/components/spinner/spinner.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

import { Component, OnDestroy, OnInit, Input } from '@angular/core';
import { Component, OnDestroy, OnInit } from '@angular/core';
import { merge, Observable, Subscription, timer } from 'rxjs';
import { debounce, distinctUntilChanged, partition, switchMap } from 'rxjs/operators';
import { PendingInterceptorService } from '../../services/spinner/pending-interceptor.service';
Expand Down
2 changes: 1 addition & 1 deletion tslint.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["tslint:recommended"],
"extends": "./node_modules/tslint/lib/configs/recommended",
"rulesDirectory": ["node_modules/codelyzer"],
"rules": {
"arrow-return-shorthand": true,
Expand Down

0 comments on commit 57f3e18

Please sign in to comment.