We're deprecating vim modelines in favor of `.editorconfig`. Removing vim modelines could be done using two one-liners. Most of the vim modelines were followed by an empty line, so this one-liner took care of these ones: ```sh rg '^# vim: .+\n\n' -l | xargs sed -i '/^# vim: /,+1d' ``` Then some of the vim modelines were followed by a pylint configuration line, so running this one-liner afterwards took care of that: ```sh rg '^# vim:' -l | xargs sed -i '/^# vim: /d' ``` |
||
|---|---|---|
| .. | ||
| LICENSE | ||
| README.md | ||
| generate.py | ||
| ublock-matches.tsv.gz | ||
README.md
The ublock-matches.tsv file is downloaded from adblock-rust's Github and preprocessed and compressed using generate.py to produce
ublock-matches.tsv.gz.
License
The aforementioned file was released under terms of the Mozilla Public
License, version 2.0 (MPLv2) by Andrius Aucinas. A copy of the license may be
found in the LICENSE file of this directory, or on Mozilla's website.