Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
szmarczak committed Jul 15, 2020
1 parent 874ee98 commit 10ee5ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/proxies/unknown-over-unknown.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ const {
Http2OverHttps
} = http2.proxies;

/* eslint-disable capitalized-comments */

(async () => {
const proxy = {
url: new URL('https://username:password@localhost:8000'),
Expand Down Expand Up @@ -37,7 +39,6 @@ const {
rejectUnauthorized: false
});

let agent;
if (alpnProtocol === 'h2') {
agent = {
http: new HttpOverHttp2(proxy),
Expand Down Expand Up @@ -90,3 +91,5 @@ const {
console.error(error);
}
})();

/* eslint-enable capitalized-comments */

0 comments on commit 10ee5ff

Please sign in to comment.