Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsocha committed Feb 16, 2019
1 parent a0edc97 commit 2fb80bf
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -4,7 +4,7 @@ docs/
public/
coverage/
.vscode/
/*_cache
*_cache
package-lock.json
*.log
.DS_Store
68 changes: 34 additions & 34 deletions tslint.json
@@ -1,37 +1,37 @@
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-immutable"],
"jsRules": {},
"rules": {
// code style
"semicolon": [true, "never"],
"quotemark": [true, "single"],
"max-line-length": [true, { "limit": 120, "ignore-pattern": "^import | // | \\*" }],
"no-consecutive-blank-lines": [true, 2],
"curly": false,
"variable-name": [false, "allow-leading-underscore"],
"trailing-comma": [true, { "multiline": "never", "singleline": "never" }],
"object-literal-shorthand": false,
"object-literal-key-quotes": [false, "always"],
"space-before-function-paren": [true, "always"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"interface-name": false,
"arrow-parens": false,
"no-empty-interface": false,
"no-var-keyword": true,
"no-class": true,
"no-this": true,
"no-any": true,
"typedef": [true, "call-signature"],
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-immutable"],
"jsRules": {},
"rules": {
// code style
"semicolon": [true, "never"],
"quotemark": [true, "single"],
"max-line-length": [true, { "limit": 120, "ignore-pattern": "^import | // | \\*" }],
"no-consecutive-blank-lines": [true, 2],
"curly": false,
"variable-name": [false, "allow-leading-underscore"],
"trailing-comma": [true, { "multiline": "never", "singleline": "never" }],
"object-literal-shorthand": false,
"object-literal-key-quotes": [false, "always"],
"space-before-function-paren": [true, "always"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"interface-name": false,
"arrow-parens": false,
"no-empty-interface": false,
"no-var-keyword": true,
"no-class": true,
"no-this": true,
"no-any": true,
"typedef": [true, "call-signature"],

// immutability
"no-parameter-reassignment": true,
"readonly-keyword": true,
"readonly-array": true,
"no-let": true,
"no-object-mutation": true,
"no-delete": true
},
"rulesDirectory": []
// immutability
"no-parameter-reassignment": true,
"readonly-keyword": true,
"readonly-array": true,
"no-let": true,
"no-object-mutation": true,
"no-delete": true
},
"rulesDirectory": []
}

0 comments on commit 2fb80bf

Please sign in to comment.