Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (3)
Test
· 65911cbc
Ben
authored
Sep 03, 2019
65911cbc
Merge branch 'chore/husky-prettier-1807' of gitlab.com:minds/front into chore/husky-prettier-1807
· d6805d66
Ben
authored
Sep 05, 2019
d6805d66
Added in pattern matching for extensions
· 5b553897
Ben
authored
Sep 05, 2019
5b553897
Hide whitespace changes
Inline
Side-by-side
package.json
View file @
5b553897
...
...
@@ -85,7 +85,6 @@
},
"husky"
:
{
"hooks"
:
{
"pre-commit"
:
".githooks/pre-commit && pretty-quick --staged --bail"
}
"pre-commit"
:
".githooks/pre-commit && pretty-quick --staged --bail --pattern '**/*.*(ts|html|scss)'"
}
}
}
src/app/common/api/client.service.ts
View file @
5b553897
import
{
Cookie
}
from
'
../../services/cookie
'
;
import
{
HttpClient
,
HttpHeaders
}
from
'
@angular/common/http
'
;
import
{
HttpClient
,
HttpHeaders
}
from
'
@angular/common/http
'
;
/**
* API Class
...
...