Skip to content

Commit bb1ffcc

Browse files
committed
chore: version 9.1.0-next.4
1 parent 17aa5d0 commit bb1ffcc

2 files changed

Lines changed: 77 additions & 20 deletions

File tree

ponyracer/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~9.1.0-next.4",
15-
"@angular/common": "~9.1.0-next.4",
16-
"@angular/compiler": "~9.1.0-next.4",
17-
"@angular/core": "~9.1.0-next.4",
18-
"@angular/forms": "~9.1.0-next.4",
19-
"@angular/platform-browser": "~9.1.0-next.4",
20-
"@angular/platform-browser-dynamic": "~9.1.0-next.4",
21-
"@angular/router": "~9.1.0-next.4",
14+
"@angular/animations": "~9.1.0-next.5",
15+
"@angular/common": "~9.1.0-next.5",
16+
"@angular/compiler": "~9.1.0-next.5",
17+
"@angular/core": "~9.1.0-next.5",
18+
"@angular/forms": "~9.1.0-next.5",
19+
"@angular/platform-browser": "~9.1.0-next.5",
20+
"@angular/platform-browser-dynamic": "~9.1.0-next.5",
21+
"@angular/router": "~9.1.0-next.5",
2222
"rxjs": "~6.5.4",
2323
"tslib": "^1.10.0",
2424
"zone.js": "~0.10.2"
2525
},
2626
"devDependencies": {
27-
"@angular-devkit/build-angular": "~0.901.0-next.3",
28-
"@angular/cli": "~9.1.0-next.3",
29-
"@angular/compiler-cli": "~9.1.0-next.4",
30-
"@angular/language-service": "~9.1.0-next.4",
27+
"@angular-devkit/build-angular": "~0.901.0-next.4",
28+
"@angular/cli": "~9.1.0-next.4",
29+
"@angular/compiler-cli": "~9.1.0-next.5",
30+
"@angular/language-service": "~9.1.0-next.5",
3131
"@types/node": "^12.11.1",
3232
"@types/jasmine": "~3.5.0",
3333
"@types/jasminewd2": "~2.0.3",
@@ -41,7 +41,7 @@
4141
"karma-jasmine-html-reporter": "^1.4.2",
4242
"protractor": "~5.4.3",
4343
"ts-node": "~8.3.0",
44-
"tslint": "~5.18.0",
44+
"tslint": "~6.1.0",
4545
"typescript": "~3.8.3"
4646
}
4747
}

ponyracer/tslint.json

Lines changed: 64 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
22
"extends": "tslint:recommended",
33
"rules": {
4+
"align": {
5+
"options": [
6+
"parameters",
7+
"statements"
8+
]
9+
},
410
"array-type": false,
5-
"arrow-parens": false,
11+
"arrow-return-shorthand": true,
12+
"curly": true,
613
"deprecation": {
714
"severity": "warning"
815
},
@@ -21,17 +28,22 @@
2128
"app",
2229
"kebab-case"
2330
],
31+
"eofline": true,
2432
"import-blacklist": [
2533
true,
2634
"rxjs/Rx"
2735
],
28-
"interface-name": false,
36+
"import-spacing": true,
37+
"indent": {
38+
"options": [
39+
"spaces"
40+
]
41+
},
2942
"max-classes-per-file": false,
3043
"max-line-length": [
3144
true,
3245
140
3346
],
34-
"member-access": false,
3547
"member-ordering": [
3648
true,
3749
{
@@ -43,7 +55,6 @@
4355
]
4456
}
4557
],
46-
"no-consecutive-blank-lines": false,
4758
"no-console": [
4859
true,
4960
"debug",
@@ -65,13 +76,59 @@
6576
true,
6677
"as-needed"
6778
],
68-
"object-literal-sort-keys": false,
69-
"ordered-imports": false,
7079
"quotemark": [
7180
true,
7281
"single"
7382
],
74-
"trailing-comma": false,
83+
"semicolon": {
84+
"options": [
85+
"always"
86+
]
87+
},
88+
"space-before-function-paren": {
89+
"options": {
90+
"anonymous": "never",
91+
"asyncArrow": "always",
92+
"constructor": "never",
93+
"method": "never",
94+
"named": "never"
95+
}
96+
},
97+
"typedef-whitespace": {
98+
"options": [
99+
{
100+
"call-signature": "nospace",
101+
"index-signature": "nospace",
102+
"parameter": "nospace",
103+
"property-declaration": "nospace",
104+
"variable-declaration": "nospace"
105+
},
106+
{
107+
"call-signature": "onespace",
108+
"index-signature": "onespace",
109+
"parameter": "onespace",
110+
"property-declaration": "onespace",
111+
"variable-declaration": "onespace"
112+
}
113+
]
114+
},
115+
"variable-name": {
116+
"options": [
117+
"ban-keywords",
118+
"check-format",
119+
"allow-pascal-case"
120+
]
121+
},
122+
"whitespace": {
123+
"options": [
124+
"check-branch",
125+
"check-decl",
126+
"check-operator",
127+
"check-separator",
128+
"check-type",
129+
"check-typecast"
130+
]
131+
},
75132
"no-conflicting-lifecycle": true,
76133
"no-host-metadata-property": true,
77134
"no-input-rename": true,

0 commit comments

Comments
 (0)