Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 14c6f70

Browse files
committed
Merge branch 'master' of github.com:EFForg/https-everywhere
2 parents 2ee5983 + 01e0e43 commit 14c6f70

File tree

2,308 files changed

+24458
-18336
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,308 files changed

+24458
-18336
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://EditorConfig.org
22

33
root = true
44

.github/pull_request_template.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
***Delete section if irrelevant***
2+
3+
### List related PRs if any
4+
5+
- pr link
6+
7+
### List related issues if any
8+
9+
- issue link
10+
11+
***May delete note after reading***
12+
13+
### Note to contributor:
14+
Thank you for contributing! If this is a new ruleset and your first time contributing, congratulations! There will be some tests ran through our continuous integration in Travis. For example, checking for duplicate hosts, problematic hosts, etc. in the ruleset file. You will see this testing begin when you open this pull request.
15+
16+
If this is not your first time and you have open PRs that have not been closed or merged, please revisit them by searching: `https://github.com/EFForg/https-everywhere/issues?q=is%3Aopen+assignee%3A[yourusernamehere]`. If there is something not being addressed by other maintainers or a project lead, link them to the PR with your question. Thank you for your patience.
17+
18+
More helpful filters in Pull Request search:
19+
- Changes requested:
20+
`is:pr is:open type:pr review:changes_requested author:[your username]`
21+
- Updated from specific date:
22+
`is:pr updated:>yyyy-mm-dd`
23+
- Merged PRs:
24+
`is:pr is:merged author:[your username]`
25+
- Approved PRs:
26+
`is:pr review:approved author:[your username]`

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
path = translations
33
url = https://git.torproject.org/translation.git
44
branch = https_everywhere
5+
6+
[submodule "lib-wasm"]
7+
path = lib-wasm
8+
url = https://github.com/EFForg/https-everywhere-lib-wasm.git

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
sudo: required
22
os: linux
3-
dist: trusty
3+
dist: bionic
44
language: python
55
python: 3.6
66
group: bionic
77
services:
88
- docker
9+
- xvfb
910
matrix:
1011
fast_finish: true
1112
include:
@@ -16,7 +17,7 @@ matrix:
1617
- env: TEST="unittests"
1718
language: node_js
1819
node_js:
19-
- "lts/*"
20+
- "lts/dubnium"
2021
- env: TEST="validations"
2122
- env: TEST="fetch"
2223
- env: TEST="preloaded"
@@ -32,8 +33,5 @@ matrix:
3233
- addons:
3334
firefox: latest-esr
3435
env: TEST="firefox esr" BROWSER=firefox
35-
before_install:
36-
- export DISPLAY=:99.0
37-
- sh -e /etc/init.d/xvfb start
3836
before_script: travis_retry test/setup_travis.sh
3937
script: . test/run_travis.sh

chromium/.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
},
2020
"globals": {
2121
"exports": true,
22-
"require": true
22+
"require": true,
23+
"wasm_bindgen": true
2324
}
2425
}

0 commit comments

Comments
 (0)