k8o
k8o
# What - `/packages/frontend/src/plugin.ts`ファイルの型修正 - 型修正の一環で絞り込みのための条件分岐 # Why misskeyの型安全性を保った状態で開発を進められるようにするため # Additional info (optional) issue立てずに実装してしまったので、不要そうでしたらCloseします。 このプロジェクトを触るのが初めてなので影響範囲が小さいように改修しました(importする関数などはそのままです)。
# What - `/packages/frontend/src/init.ts`ファイルの型修正とeslint修正 - `config.ts`と`local-storage.ts`も修正(エラーの原因だと思って最初に修正してしまいました) # Why misskeyの型安全性を保った状態で開発を進められるようにするため # Additional info (optional) `document.documentElement`に定義する`lang`はこれまで`null`の時`lang="null"`となっていましたが、nullには意味がないため何も設定しないようにしました(空文字列は別の意味を持つため指定しませんでした)。 > The lang attribute (in no namespace) specifies the primary language for the element's contents and...
**Is your feature request related to a problem? Please describe.** Unintended formatting when developing on github.dev as it does not read prettier config files. **Describe the solution you'd like** Make...
型変数の修飾子として`const`が使えるようになったので、その説明を追加しませんか? `const`を型変数の前に付け加えることで、推論がより具体的な型になる機能です。 ```ts declare function fnNotUseConst(args: T): T; declare function fnUseConst(args: T): T; // Return value is string[] fnNotUseConst(["a", "b" ,"c"]); // Return value is readonly ["a", "b", "c"] fnUseConst(["a",...
closes https://github.com/denoland/fresh/issues/2364
`.vscode/import_map.json` is used in `deno.json` as well as `.vscode/settings.json`. If `deno.json` uses it, I thought it was fine to place it in root. Even if not, I felt that the...
In Storybook8, `Icons` component in `@storybook/components` is deprecated and `@storybook/icons` is used instead. https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#icons-is-deprecated I replaced `Icon` because we were still using `@storybook/components`.
I want to set up deny list when I set up `categories` in `pluginStrictTokensScope`. example. ```ts import { defineConfig } from '@pandacss/dev' import { pluginStrictTokensScope } from '@pandabox/panda-plugins' export default...
Close https://github.com/astahmer/pandabox/issues/54
### Validations - [X] Follow our [Code of Conduct](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CODE_OF_CONDUCT.md) - [X] Read the [Contributing Guide](https://eslint.style/contribute/guide). - [X] Check that there isn't already an issue that reports the same bug to...