Skip to content

Instantly share code, notes, and snippets.

View zender's full-sized avatar

Nikolay Georgiev zender

  • EU
View GitHub Profile
{
"success": false,
"errors": {
"specification": {
"date_start": [
"The test needs a start date"
],
"duration": [
"Duration cannot be blank"
],
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var AbstractLogger_1 = require('./AbstractLogger');
var ConsoleLogger = (function (_super) {
__extends(ConsoleLogger, _super);
function ConsoleLogger() {
_super.call(this);
@zender
zender / tslint.ts
Created February 9, 2016 19:56
tslint
{
"rules": {
"class-name": true,
"curly": false,
"eofline": true,
"indent": "spaces",
"max-line-length": [true, 140],
"member-ordering": [true,
"public-before-private",
"static-before-instance",