並び順

ブックマーク数

期間指定

  • から
  • まで

81 - 85 件 / 85件

新着順 人気順

lintの検索結果81 - 85 件 / 85件

  • GitHub - ixartz/Next-js-Boilerplate: 🚀🎉📚 Boilerplate and Starter for Next.js 14+ with App Router and Page Router support, Tailwind CSS 3.4 and TypeScript ⚡️ Made with developer experience first: Next.js + TypeScript + ESLint + Prettier + Husky + Lint-S

    Developer experience first, extremely flexible code structure and only keep what you need: ⚡ Next.js with App Router support 🔥 Type checking TypeScript 💎 Integrate with Tailwind CSS ✅ Strict Mode for TypeScript and React 18 🔒 Authentication with Clerk: Sign up, Sign in, Sign out, Forgot password, Reset password, and more. 📦 Type-safe ORM with DrizzleORM, compatible with SQLite, PostgreSQL, and

      GitHub - ixartz/Next-js-Boilerplate: 🚀🎉📚 Boilerplate and Starter for Next.js 14+ with App Router and Page Router support, Tailwind CSS 3.4 and TypeScript ⚡️ Made with developer experience first: Next.js + TypeScript + ESLint + Prettier + Husky + Lint-S
    • lintとは - IT用語辞典

      概要 lint(linter)とは、コンピュータプログラムなどのソースコードを読み込んで内容を分析し、問題点を指摘してくれる静的解析ツール。また、そのようなツールで解析を行うこと。ツールを指す場合は “linter” (リンター)と呼ぶこともある。 人間がプログラミング言語で書いたソースコードはコンパイラなどによって機械語などのコードに変換されるが、コンパイラなどの言語処理系は主に言語仕様や構文規則などに違反する誤りがある場合にエラーを返す。一方、lintは文法上の誤りだけでなくバグの原因となり得る疑わしい記述を調べて警告してくれる。 例えば、変数宣言のあとに一度も参照されていない変数や、変数の初期化前に内容を参照しているコードなどは言語によっては規則に違反する記述とは言えないが、そのまま放置すれば実行時エラーとなったり何らかの問題を引き起こす可能性がある。 lintはこのような潜在的に問

        lintとは - IT用語辞典
      • huskyとlint-stagedでコミット前に確実にLintを実行していく - Sweet Escape

        はじめに コミット前にlint系のチェックをしたいケースってあると思います。特にチーム開発とかの場合、全員がlintをちゃんと実行してほしいとかあるかと。そういったときのためにコミットのタイミングでlint系のコマンドを実行するための仕組みとしてhuskyとlint-stagedを組み合わせたものが定番かと思います。 新しいプロジェクトのリポジトリを作るたびにこの組み合わせのセットアップを行うのですが、毎回ググりながらやるのでいい加減に面倒になって自分用のメモを残しておきます。 huskyとlint-stagedそのものについては大雑把に説明すると、huskyがコミット前に何らかの処理を実行するためのツール、lint-stagedがGitでステージにあるファイルに対してlintを実行するためのツールです。 インストール yarn add husky lint-staged -D lint-

          huskyとlint-stagedでコミット前に確実にLintを実行していく - Sweet Escape
        • deno_lint docs

          Overloaded signatures which are not next to each other can lead to code which is hard to read and maintain. Invalid: (bar is declared in-between foo overloads) type FooType = { foo(s: string): void; foo(n: number): void; bar(): void; foo(sn: string | number): void; }; interface FooInterface { foo(s: string): void; foo(n: number): void; bar(): void; foo(sn: string | number): void; } class FooClass

          • All TypeScriptのMonorepoのlinterをESLintからbiomeにしたらlintが25倍速くなった🚀 - KAKEHASHI Tech Blog

            フロントエンド(React.js TypeScript) バックエンド(Node.js TypeScript) インフラ(CDK TypeScript) の Monorepo の linter を ESLint からbiomeに変更したら lint が約50秒かかっていたのが大体2秒になって嬉しかったので共有します。 こんにちは、カケハシでソフトウェアエンジニアをしている加藤です。 本エントリはカケハシ Part 2 Advent Calendar 2023の 21 日目の記事です。 ぜひ Part1 も 2 も見て頂けたらと思います。 同じカケハシ社内の他のチームでは以前 コードフォーマッターを Prettier から dprint にしたら 10 倍以上速くなった話 🚀 で紹介した通り、dprintを導入していますが、今回僕たちのチームは biome を導入してみました。 導入してみ

              All TypeScriptのMonorepoのlinterをESLintからbiomeにしたらlintが25倍速くなった🚀 - KAKEHASHI Tech Blog