aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen/test
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused files in 'script/dom/bindings/'Corey Farwell2015-07-1018-1660/+0
| | | | | Similar to https://github.com/servo/servo/pull/6581, but I didn't get everything in that pull request
* Remove tidy blacklist for 'script/dom/bindings/*'Corey Farwell2015-07-091-5/+5
| | | | | | | | | | | | | | | | | | | | | Recently, I found myself reading through the Python codegen scripts that live in 'components/script/dom/bindings/*' and noticed that there were many tidy violations: unnecessary semicolons, weird spacing, unused variables, lack of license headers, etc. Considering these files are now living in our tree and mostly maintained directly by contributors of Servo (as opposed to being from upstream), I feel these files should not be excluded from our normal tidy process. This commit removes the blacklist on these files and fixes all tidy violations. I added these subdirectories to the blacklist because they appear to be maintained upstream somewhere else: * "components/script/dom/bindings/codegen/parser/*", * "components/script/dom/bindings/codegen/ply/*", Also, I added a '# noqa' comment which tells us to ignore the flake8 errors for that line. I chose to ignore this (instead of fixing it) to make the work for this commit simpler for me.
* Update WHATWG links to use HTTPSCorey Farwell2015-04-131-1/+1
| | | | | | | | | | | | | | Extracted this out of #5649 This commit was created with the following commands: ``` find . -iname "*.webidl" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ``` ``` find . -iname "*.rs" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ```
* Fix spelling mistakes in comments.Joseph Crail2014-12-111-4/+4
|
* Cargoify servoJack Moffitt2014-09-0818-0/+1660