Alex A.

Results 20 issues of Alex A.

Would it make sense for this download utility to support Python 3 as well? On the first glance, making `lsun` work on both 2.7 and 3.x looks straightforward. Please let...

There is a common anti-pattern in Protractor when something is explicitly resolved and then asserted instead of passing a promise directly to `expect()` which is patched to understand promises and...

type: feature-request

This should be a warning: ```js expect($(".myclass").isDisplayed).toBe(true); ``` Not a warning: ```js expect($(".myclass").isDisplayed()).toBe(true); ```

type: feature-request

We can probably use [`eslint-plugin-meteor`'s ES6&Babel setup](https://github.com/dferber90/eslint-plugin-meteor) as an example. This, may, I think, be a good reason to finally bump to 1.0.

type: enhancement

Refactor `use-count-method` rule as per https://codereview.stackexchange.com/questions/166876/eslint-rule-for-jasmine-protractor/166888#166888.

type: code-quality
type: cleanup

If inside a spec file, protractor specific code, which needs to be executed inside a control flow, is not put under `beforeEach()`, `afterEach()`, `beforeAll()`, `afterAll()` or `it()`, the rule should...

help wanted
type: feature-request

This is for rules `no-angular-classes` and `no-bootstrap-classes`.

type: enhancement

We need to go through every rule and utility function and, if there is a jsdoc missing, add it. Similar to what `ESLint` has internally, example [here](https://github.com/eslint/eslint/blob/master/lib/rules/arrow-body-style.js#L59).

type: enhancement
type: documentation
type: cleanup

We should take [no-redeclare](https://github.com/eslint/eslint/blob/master/lib/rules/no-redeclare.js) rule as a base for `no-shadowing` rule as it approaches the problem in a simpler and more reliable way.

type: enhancement

`no-expect-in-po` rule should support [`minimatch`](https://github.com/isaacs/minimatch) options via an additional configuration key, smthlike `pathsOptions` similar to what [`eslint-plugin-disable`](https://github.com/mradionov/eslint-plugin-disable) is providing.

type: enhancement