Skip to content

Commit cf0bf4a

Browse files
committedSep 21, 2018
chore(lint): fix tslint warnings
1 parent 1e0fa65 commit cf0bf4a

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed
 

Diff for: ‎packages/generators/add-generator.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,9 @@ export default class AddGenerator extends Generator {
461461
// Either we are adding directly at the property, else we're in a prop.theOne scenario
462462
const actionMessage: string =
463463
isDeepProp[1] === "other"
464-
? `What do you want the key on ${action} to be? (press enter if you want it directly as a value on the property)`
464+
? `What do you want the key on ${
465+
action
466+
} to be? (press enter if you want it directly as a value on the property)`
465467
: `What do you want the value of ${isDeepProp[1]} to be?`;
466468

467469
this.prompt([

Diff for: ‎tslint.json

-6
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@
1515
],
1616
"no-console": {
1717
"severity": "warning"
18-
},
19-
"max-line-length": {
20-
"options": {
21-
"limit": 120
22-
},
23-
"severity": "warn"
2418
}
2519
},
2620
"rulesDirectory": [],

0 commit comments

Comments
 (0)
Please sign in to comment.