├── .tidy ├── README.md ├── charter.html ├── intent-to-migrate.md ├── tidyconfig.txt └── w3c.json /.tidy: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | indent: yes 3 | wrap: 80 4 | tidy-mark: no 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/admin/HEAD/README.md -------------------------------------------------------------------------------- /charter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/admin/HEAD/charter.html -------------------------------------------------------------------------------- /intent-to-migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/admin/HEAD/intent-to-migrate.md -------------------------------------------------------------------------------- /tidyconfig.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | indent: yes 3 | wrap: 80 4 | tidy-mark: no 5 | newline: LF 6 | -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/admin/HEAD/w3c.json --------------------------------------------------------------------------------