Alex A.
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...
This should be a warning: ```js expect($(".myclass").isDisplayed).toBe(true); ``` Not a warning: ```js expect($(".myclass").isDisplayed()).toBe(true); ```
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.
Refactor `use-count-method` rule as per https://codereview.stackexchange.com/questions/166876/eslint-rule-for-jasmine-protractor/166888#166888.
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...
This is for rules `no-angular-classes` and `no-bootstrap-classes`.
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).
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.
`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.