├── .gitignore ├── COMMITTING.md ├── CONTRIBUTING.md ├── GITHUB-TEAMS.md ├── LABELS.md ├── LICENSE ├── MAINTAINERS.md ├── NEW-STANDARD.md ├── README.md ├── labels.json ├── labels.py └── review.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /COMMITTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/COMMITTING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GITHUB-TEAMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/GITHUB-TEAMS.md -------------------------------------------------------------------------------- /LABELS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/LABELS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /NEW-STANDARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/NEW-STANDARD.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/README.md -------------------------------------------------------------------------------- /labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/labels.json -------------------------------------------------------------------------------- /labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/labels.py -------------------------------------------------------------------------------- /review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/meta/HEAD/review.py --------------------------------------------------------------------------------