ml-model-loader/node_modules/prettier
Lilith 8f4a35ba79 chore: add publishConfig to prevent public npm publishing
All @lilith/* packages should publish to forge.nasty.sh only.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 00:42:23 -08:00
..
bin chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
internal chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
plugins chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
doc.d.ts chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
doc.js chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
doc.mjs chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
index.cjs chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
index.d.ts chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
index.mjs chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
LICENSE chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
package.json chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
README.md chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
standalone.d.ts chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
standalone.js chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
standalone.mjs chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
THIRD-PARTY-NOTICES.md chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00

Prettier Banner

Opinionated Code Formatter

JavaScript · TypeScript · Flow · JSX · JSON
CSS · SCSS · Less
HTML · Vue · Angular
GraphQL · Markdown · YAML
Your favorite language?

CI Status Coverage Status Blazing Fast
npm version weekly downloads from npm code style: prettier Follow Prettier on X

Intro

Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.

Input

foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());

Output

foo(
  reallyLongArg(),
  omgSoManyParameters(),
  IShouldRefactorThis(),
  isThereSeriouslyAnotherOne(),
);

Prettier can be run in your editor on-save, in a pre-commit hook, or in CI environments to ensure your codebase has a consistent style without devs ever having to post a nit-picky comment on a code review ever again!


Documentation

Install · Options · CLI · API

Playground


Badge

Show the world you're using Prettiercode style: prettier

[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

Contributing

See CONTRIBUTING.md.