forked from pi-hole/pi-hole
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pi-hole#1404 from pi-hole/development
3.0
- Loading branch information
Showing
20 changed files
with
774 additions
and
265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = tab | ||
tab_width = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{js,py}] | ||
charset = utf-8 | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# Tab indentation (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
# Indentation override for all JS under lib directory | ||
[scripts/**.js] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Matches the exact files either package.json or .travis.yml | ||
[{package.json,.travis.yml}] | ||
indent_style = space | ||
indent_size = 2 |
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 |
---|---|---|
|
@@ -4,4 +4,3 @@ | |
__pycache__ | ||
.cache | ||
.pullapprove.yml | ||
|
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
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,53 +1,23 @@ | ||
## Pi-hole ad-list default sources. Updated 29/10/2016 ######################### | ||
# # | ||
# To make changes to this file: # | ||
# 1. run `cp /etc/pihole/adlists.default /etc/pihole/adlists.list` # | ||
# 2. run `nano /etc/pihole/adlists.list` # | ||
# 3. Uncomment or comment any of the below lists # | ||
# # | ||
# Know of any other lists? Feel free to let us know about them, or add them # | ||
# to this file! # | ||
################################################################################ | ||
|
||
# The below list amalgamates several lists we used previously. | ||
# See `https://github.com/StevenBlack/hosts` for details | ||
##StevenBlack's list | ||
https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts | ||
|
||
# Other lists we consider safe: | ||
##MalwareDomains | ||
https://mirror1.malwaredomains.com/files/justdomains | ||
|
||
##Cameleon | ||
http://sysctl.org/cameleon/hosts | ||
|
||
##Zeustracker | ||
https://zeustracker.abuse.ch/blocklist.php?download=domainblocklist | ||
|
||
##Disconnect.me Tracking | ||
https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt | ||
|
||
##Disconnect.me Ads | ||
https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt | ||
|
||
# hosts-file.net list. Updated frequently, but has been known to block legitimate sites. | ||
##Hosts-file.net | ||
https://hosts-file.net/ad_servers.txt | ||
|
||
# Mahakala list. Has been known to block legitimate domains including the entire .com range. | ||
# Warning: Due to the sheer size of this list, the web admin console will be unresponsive. | ||
#https://adblock.mahakala.is/ | ||
|
||
# ADZHOSTS list. Has been known to block legitimate domains | ||
#http://pilotfiber.dl.sourceforge.net/project/adzhosts/HOSTS.txt | ||
|
||
# Windows 10 telemetry list | ||
#https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/win10/spy.txt | ||
|
||
# Securemecca.com list - Also blocks "adult" sites (pornography/gambling etc) | ||
#http://securemecca.com/Downloads/hosts.txt | ||
|
||
# Quidsup's tracker list | ||
#https://raw.githubusercontent.com/quidsup/notrack/master/trackers.txt | ||
|
||
# Block the BBC News website Breaking News banner | ||
#https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts | ||
|
||
# Untested Lists: | ||
#https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt | ||
#https://raw.githubusercontent.com/Dawsey21/Lists/master/main-blacklist.txt | ||
#http://malwaredomains.lehigh.edu/files/domains.txt | ||
# Following two lists should be used simultaneously: (readme https://github.com/notracking/hosts-blocklists/) | ||
#https://raw.github.com/notracking/hosts-blocklists/master/hostnames.txt | ||
#https://raw.github.com/notracking/hosts-blocklists/master/domains.txt | ||
# Combination of several host files on the internet (warning some facebook domains are also blocked but you can go to facebook.com). See https://github.com/mat1th/Dns-add-block for more information. | ||
#https://raw.githubusercontent.com/mat1th/Dns-add-block/master/hosts |
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
Oops, something went wrong.