-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wasteland Ranger
committed
Feb 21, 2022
1 parent
4697b7f
commit b7fd7d1
Showing
5 changed files
with
58 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright 2012-2021 Francis Zhao <[email protected]> | ||
Copyright 2012-2022 Francis Zhao and contributors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
# hosts v2.1.3 | ||
# hosts v2.1.4 | ||
# https://n2o.io/go?page=quarklist | ||
# | ||
# Copyright 2021 Francis Zhao <[email protected]> | ||
# Copyright 2022 Francis Zhao and contributors | ||
# Released under the MIT license | ||
# https://github.com/francis-zhao/quarklist/blob/master/LICENSE | ||
# | ||
# Date: 2021-11-09T00:00+07:00 | ||
# Date: 2022-02-21T14:00+07:00 | ||
# | ||
|
||
# `localhost` name resolution is handled within DNS itself. | ||
# 127.0.0.1 localhost | ||
# ::1 localhost | ||
# localhost | ||
# 127.0.0.1 localhost | ||
# 255.255.255.255 broadcasthost | ||
# ::1 localhost | ||
# fe80::1%lo0 localhost | ||
|
||
# ------------ Advertisers Blocking 广告商拦截 ------------ # | ||
|
||
|
@@ -686,6 +688,8 @@ | |
0.0.0.0 down.360safe.com | ||
0.0.0.0 www.360safe.com | ||
0.0.0.0 www.duba.com | ||
0.0.0.0 horux.cz | ||
0.0.0.0 lktoday.ru | ||
0.0.0.0 hao.rising.cn | ||
0.0.0.0 home.xl9.xunlei.com | ||
0.0.0.0 misc.xl9.xunlei.com | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "quarklist", | ||
"version": "2.1.3", | ||
"homepage": "https://n2o.io/go?page=quarklist", | ||
"license": "MIT", | ||
"author": "Francis Zhao <[email protected]>", | ||
"repository": "github:francis-zhao/quarklist", | ||
"scripts": { | ||
"prettier": "prettier --write ." | ||
}, | ||
"devDependencies": { | ||
"prettier": "^2.5.1" | ||
}, | ||
"prettier": { | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"endOfLine": "lf", | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"*.md", | ||
"*.markdown" | ||
], | ||
"options": { | ||
"singleQuote": false | ||
} | ||
}, | ||
{ | ||
"files": [ | ||
"*.py" | ||
], | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
} | ||
} |