Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a semicolon for no reason? #2

Open
eduardo-yieldstreet opened this issue Aug 31, 2016 · 1 comment
Open

Adding a semicolon for no reason? #2

eduardo-yieldstreet opened this issue Aug 31, 2016 · 1 comment

Comments

@eduardo-yieldstreet
Copy link

eduardo-yieldstreet commented Aug 31, 2016

tslintout:

ts/components/user/LoginController.ts[7, 1]: space indentation expected

after running tslint-fix :

ts/components/user/LoginController.ts(7,26): error TS1131: Property or signature expected.

Code before tslint-fix :

    export interface ILoginFormData {
        username: string,
        password: string
    }

Code after tslint-fix :

    export interface ILoginFormData {
        username: string,;
        password: string;
    }

@nojvek
Copy link
Owner

nojvek commented Sep 8, 2016

Interesting. Could you paste a sample of the code with line numbers from 1?

I've fixed a couple of space indentation issues automatically and they all ran fine.

I plan to spend a lot more time this week and make tslint-fix release ready with 100% code coverage.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants