Xenya0815

Results 4 issues of Xenya0815

I execute flake8 with the command line param `--max-line-length=120`. It would be cool if that param is also passed to isort. The other interesting flake8 cli param is `--config`. My...

### Used versions TSC: 3.0.3 tslint: 5.11.0 tslint-reslint-rules: 5.4.0 ### Used tslint.json ```json { "extends": [ "tslint-eslint-rules" ], "rules": { "ter-newline-after-var": [true, "always"] } } ``` ### Linted code ```typescript...

The added `"@types/node": "^6.0.47"` dependency leads to errors at our project: > Conflicting definitions for 'node' found at 'node_modules/node-eventstore-client/node_modules/@types/node/ts3.2/index.d.ts' and node_modules/@types/node/ts3.2/index.d.ts'. Consider installing a specific version of this library to...

**Used versions** - [email protected] - [email protected] **Code** ```ts class X { foo(x: number, y: string): string; foo( y: string): number; foo(...args: any): string | number { return 42; } }...

enhancement
help wanted