I notice in my application that TsLint is suggesting:
static $inject = [
'$http',
'$q',
'$scope',
'configService',
'stateService',
'utilityService'
];
for the above that:
Message 2 TsLint: ' should be "
Is this a suggested standard now for Typescript ?
This was the first result in my google search for: "double vs single quotes typescript."
Considering the accepted answer is a little old (but still valid from the docs) I would like to add this quote from: https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines updated on November 27, 2015:
Use double quotes for strings.
Granted "the code is more what you'd call 'guidelines' than actual rules." :)