Steve Taylor

Results 14 issues of Steve Taylor

It would be nice to have a new rule, `filenames/match-imported`, that is similar to `filenames/match-exported` but works on `import`s. When used together, this would prevent renaming across the module boundary....

This is an attempt to fix #3601. This fix uses [conditional exports](https://nodejs.org/docs/latest-v16.x/api/packages.html#packages_conditional_exports) and is specifically to fix how Node.js, not bundlers, import styled components. I'm leaving it as a draft...

Consider the following: components/foo.js: ```jsx export default class Foo extends React.Component { render() { // ... } } ``` widgets/foo.js: ```jsx import FooComponent from '../components/foo'; export default class Foo extends...

help wanted
question
rule proposal
accepted

| Title | Description | --------------------|------------ | Version | N/A | Type | Feature request | node | N/A | Operating System | N/A | Short Description | Don’t require...

This ``` docker run -d -p 443:5000 --name registry --restart=always \ -v $(pwd)/var/lib/registry:/var/lib/registry \ -v $(pwd)/auth:/auth \ -e REGISTRY_HTTP_ADDR=0.0.0.0:5000 \ -e REGISTRY_HTTP_HOST=https://docker.example.com \ -e REGISTRY_HTTP_TLS_LETSENCRYPT_CACHEFILE=/etc/docker/registry/letsencrypt.json \ -e [email protected] \ -e...

bug
priority/P0

- `cypress-testing-library` version: 8.0.0 - `node` version: 14.16.1 - `yarn` version: 1.22.10 Relevant code or config cypress/support/commands.js ```javascript import '@testing-library/cypress/add-commands' ``` cypress.json: ```json { "component": { "testFiles": "**/*.test.{ts,tsx}", "componentFolder": "."...

The Node.js `Buffer` can encode and decode strings using various encodings. And the [iconv-lite](https://github.com/ashtuchkin/iconv-lite) library adds additional encodings. `ByteBuffer` should be flexible enough to handle any encodings that `ByteBuffer` can...

Pretty much what the title says. When cyclic dependencies between packages are detected, raise it as an error.

This change adds declaration maps to the `sst`, `astro-sst` and `svelte-kit-sst` packages, so that developers who use these packages can directly navigate to the source within Visual Studio Code (typically...

The dynamic import should have used `await` so it would destructure the imported module rather than the `Promise` returned by `import('./src/cli/args.js')`. Rather than add `await`, I converted it to a...