Seiya

Results 28 issues of Seiya

In the original paper, the model has 2n+1 layers of 16 filters, 2n layers of 32 filters and 2n layers of 64 filters. However, your model seems to have 1...

`bootstrap-loader` requires `node-sass` as a peer dependency. https://github.com/shakacode/bootstrap-loader/blob/2c4c85b86313da033a2104e84895ec87285ad4b5/package.json#L41 I prefer [Dart Sass](https://sass-lang.com/dart-sass) because: - [`node-sass` has been deprecated.](https://sass-lang.com/blog/libsass-is-deprecated) - [`node-sass` tends to fail to build on install](https://github.com/nodejs/node-gyp/issues/1960) Is there a...

- [x] I have searched the [issues](https://github.com/recharts/recharts/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? I usually want to fix...

How to set data-event nothing? I want a tooltip that is shown at initial view, and disappears when `data-event-off` is fired. So I tried to use `ReactTooltip.show` to show, and...

MDN says > Always look for a way to use specificity before even considering !important Only use !important on page-specific CSS that overrides foreign CSS (from external libraries, like Bootstrap...

**Is your feature request related to a problem? Please describe.** No, just an idea. It should be convenient because this pattern can be seen in other languages. examples: [Python](https://docs.python.org/3/glossary.html#term-generator-iterator), [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator),...

enhancement
waiting

## Summary I added `ignoreThisDependency` option to the ESLint rule `exhaustive-deps`. It's like my suggestion in https://github.com/facebook/react/issues/16265#issuecomment-685723348 . This helps people who doesn't prefer destructuring. You can find such people...

CLA Signed

**Prettier 2.8.7** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuEAKAhgSgAQF4B82A9EemQDpToDcllqOB2GANNgEZtjEBU267bjyKZqIFiAgAHGAEtoAZ2Sh0AJ1UQA7gAU1CJSnQAbTegCeSie1XowAazgwAyugC2cADKyocZADNjBTgrG3tHJylbbwBzZBhVAFdgkDhXdjgAEwzMj3QoaIT0aLgAMQhVV3QYOXzkEHQEmAhxEAALGFcjAHVW2XgFSLA4J30+2QA3PrM6sAVLEG8g1RhtG2jK-0DkgCsFAA8nGKM4AEUEiHhNoyCJSNUluvYBOCMWqVVvGC7ZDJhW5AAHAAGW4aIJdGxSOrvOBLca+CQAR3O8FW0gM9QUAFofJlMi1VHBkbJCasihskAFrskgq5ZHFEjSjnAAILVD7sRpwbRwVReHxXG4gBTMs4XXyUrYSGACb6-f5IABM0pssiMMQAwhBXBSUgoAKwtBJBAAqAgMVKF4ySAEkoNlYE4wB8ZCz7U4YGZjoK4ABfX1AA) ```sh --parser babel ``` **Input:** ```jsx (a) => //aaa a; () => (a, b, c /* abc */); ``` **Output:** ```jsx ( a //aaa ) =>...

type:bug
lang:javascript

## Description First step of https://github.com/prettier/prettier/pull/15909. Narrowing the scope of `normalizeDoc()` that yields invalid `fill()`, this PR - fixes #9503 - make codeblock consistent with pure code format (CSS it...

**Prettier 3.2.1** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuc0DOMAEAPTBeTAbQEYB9ABkosoBpMAma8pugZiZcwBYPLm-eVPnQCsg8nQBs4mgB0omRUuUB6FZkgBbTQhjzlBxQHYZmABzjLA4fsPKAnONt3MAXRA0QEAA4wAlujIoACGAE6hEADuAAphCGjIIMEANpHBAJ4JngBGocFgANZwMADKwToAMn5QcMgAZilocDl5hcUl3vnVAObIMKEArs0gTZp+fYPDcNjecKF+OrApACpzUGF+cAlIDclNnmg9yXAAigMQ8PWNwwBWaNglR6fnlzvXngCOL3DREd7bSTQAFoanAACbgjwgfrBPzJHoAYQg2mCiRSyShhyg3WOAEEYP0-NkBvBonMqjUrnthgALGCaZIAdRpfngaE6YDgJXirL8ADdWelEmA0FkQHyhgBJKAQ2AlMDzXy4mUlGDpY5U-YgbwRJqMvLeRI6rZzPm1TzVJqhGC-YLdTSot7UzydUJWxLZYLZOAYzyhOBfPz+232x27LUwL2MvxgmA05D0TwDJrLL3bcNTTTesEQsEVYLYgZ2uAAMQgoQdBJ6aJJEChOuqMGjsfjSFY5AAvh2gA) ```sh --parser babel --print-width 30 ``` **Input:** ```jsx const x = [1_000_000, 2_000_000, 3_000_000, 4_000_000_000_000_000_000, 5_000_000, 6_000_000, // comment 7_000_000, 8_000_000_000_000_000_000, 9_000_000 ] ``` **Output:** ```js...

type:bug
lang:javascript