Alberto Martínez

Results 57 comments of Alberto Martínez

@haslers , this version is working for me and does not depend on external typings (it only exposes `addEventListener` & `removeEventListener` from EventTarget) : ```typescript /* eslint no-use-before-define:0, semi:0, space-infix-ops:0...

@Aankhen , my tsconfig.json: ```json { "compilerOptions": { "lib": ["es6"], "module": "commonjs", "allowJs": true, "noImplicitReturns": true, "outDir": "lib", "sourceMap": true, "target": "es6" }, "compileOnSave": true, "files": [ "index.d.ts" ], "include":...

...my devDependencies: ```json "devDependencies": { "eslint": "^5.1.0", "firebase-functions-test": "^0.1.2", "mocha": "^5.2.0", "ts-node": "^7.0.0", "typescript": "^2.9.2", "typescript-eslint-parser": "^16.0.1" }, ``` and you're right, it is strange but TS can't find the...

@sheerun , use the `"alignTernaryLines": false` in your prettierrc.json with alignTernaryLines as `false` you have this output: ![image](https://user-images.githubusercontent.com/6636980/60083092-aa05ad80-96fa-11e9-859c-ad8fe42cc3d0.png) The logic is the same as ESLint [`indent.flatTernaryExpressions`](https://eslint.org/docs/rules/indent#flatternaryexpressions)

Should be. I based my PR on the ESLint rule code, which is the one that Standard uses.

It is the expected behavior, JPEG is a lossy format, so multiple mutations involve degradations. EDIT: mutation = open +edit + save + close.

It is mot maintained, for now.

Hi @fabOnReact, do you want to maintain this repo?