Skip to main content
DevTools24

TOML 포맷터

TOML 파일을 포맷하고 검증합니다. JavaScript 도구와 함께 사용하기 위해 TOML을 JSON으로 변환합니다.

About TOML

  • • TOML (Tom's Obvious Minimal Language) is a config file format
  • • Used by Cargo (Rust), pip (pyproject.toml), and many other tools
  • • Supports strings, integers, floats, booleans, dates, arrays, and tables
  • • More readable than JSON for configuration files

TOML Format - 기술 세부 정보

TOML (Tom's Obvious Minimal Language) is a configuration file format designed to be easy to read. It's used by Cargo (Rust), pyproject.toml (Python), and many other tools.

명령줄 대안

# Validate TOML with Python
python3 -c "import tomllib; print(tomllib.load(open('config.toml', 'rb')))"

# Or with taplo CLI
taplo format config.toml

참조

공식 사양 보기