Alex Eagle

Results 1034 comments of Alex Eagle

I thought about a more complex datastructure but I think the fact that multiple codeowners rules compose makes everything simpler and gives approx. the same ergonomics for expressing what you...

Rebased now that CI is functional again (thanks @meteorcloudy )

FYI here is what I've patched: ``` ReplaceFilter.prototype.processString = function (string, relativePath) { var result = this.applause.replace(string); if (result === false) { // no replacements return string; } console.log(this.options.replaceWithPath); if...

oops, didn't mean to close. Would you like a PR?

``` replaceWithPath: function(relativePath, result) { return result.replace('@@FILENAME_NO_EXT', relativePath.replace(/\.\w+$/, '')); } ``` So either the original file contained `@@FILENAME_NO_EXT`, or (in my case) it was written there by one of the...

@jsharpe @illicitonion does this request make sense to you?

Bazel has existing semantics for the default label in a package, which uses the same convention for "the symbol named the same as the package"). I see that as an...

I need this for a client who runs into an error with some third-party library, which creates a file in `/tmp` that ends up in the coverage database file, but...

I expect this is resolved by https://github.com/aspect-build/rules_py because it doesn't mess with the PYTHONPATH, it just lays out a python-idiomatic virtualenv with a `site-packages` folder.

https://github.com/aspect-build/rules_py has the explicit goal of providing excellent Python IDE support for `py_*` rules.