├── .gitattributes ├── .pre-commit-config.yaml ├── .prettierrc.toml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs └── README.md ├── logos ├── toml-100.png ├── toml-200.png ├── toml-400.png ├── toml.ai └── toml.svg ├── scripts └── release.py ├── toml.abnf └── toml.md /.gitattributes: -------------------------------------------------------------------------------- 1 | toml.abnf text eol=crlf 2 | /scripts/* linguist-detectable=false 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- 1 | proseWrap = "always" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/docs/README.md -------------------------------------------------------------------------------- /logos/toml-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/logos/toml-100.png -------------------------------------------------------------------------------- /logos/toml-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/logos/toml-200.png -------------------------------------------------------------------------------- /logos/toml-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/logos/toml-400.png -------------------------------------------------------------------------------- /logos/toml.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/logos/toml.ai -------------------------------------------------------------------------------- /logos/toml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/logos/toml.svg -------------------------------------------------------------------------------- /scripts/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/scripts/release.py -------------------------------------------------------------------------------- /toml.abnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/toml.abnf -------------------------------------------------------------------------------- /toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toml-lang/toml/HEAD/toml.md --------------------------------------------------------------------------------