File: control

package info (click to toggle)
golang-github-muhammadmuzzammil1998-jsonc 0.0~git20201229.615b091-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,128 kB
  • sloc: makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,618 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Source: golang-github-muhammadmuzzammil1998-jsonc
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-muhammadmuzzammil1998-jsonc
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-muhammadmuzzammil1998-jsonc.git
Homepage: https://github.com/muhammadmuzzammil1998/jsonc
XS-Go-Import-Path: github.com/muhammadmuzzammil1998/jsonc

Package: golang-github-muhammadmuzzammil1998-jsonc-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: JSON with comments for Go!
 JSONC is a superset of JSON which supports comments.  JSON formatted
 files are readable to humans but the lack of comments decreases
 readability.  With JSONC, you can use block (/* */) and single line (//)
 comments to describe the functionality.  Microsoft VS Code also uses
 this format in their configuration files like settings.json,
 keybindings.json, launch.json, etc.
 .
 What this package offers
 .
 "JSONC for Go" offers ability to convert and unmarshal JSONC to pure
 JSON.  It also provides functionality to read JSONC file from disk and
 return JSONC and corresponding JSON encoding to operate on.  However, it
 only provides a one-way conversion.  That is, you can not generate JSONC
 from JSON.  Read documentation (DOCUMENTATION.md) for detailed examples.