├── .editorconfig ├── .gitattributes ├── code-of-conduct.md ├── contributing.md └── readme.md /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at sindresorhus@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms. 4 | 5 | 6 | ## Updating your pull request 7 | 8 | Sometimes a maintainer will ask you to edit your pull request before it's included. This is normally due to spelling errors or because your pull request didn't match the guidelines. [Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write-up on how to update your pull request. 9 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Twitter Mute Words [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | > Inspiration for words to mute on Twitter 4 | 5 | Twitter supports [muting tweets](https://twitter.com/settings/muted_keywords) with specific words from your timeline. 6 | 7 | Note that Twitter limits it to 100 entries, so pick the ones most important to you. 8 | 9 | Contributions welcome, but it should be generally useful and not offensive. The list is lowercase and alphabetically sorted. 10 | 11 | 12 | ## Politics 13 | 14 | ``` 15 | #alternativefact 16 | #alternativefacts 17 | @realdonaldtrump 18 | attorney general 19 | bomb 20 | bombs 21 | brexit 22 | climate change 23 | comey 24 | congress 25 | conspiracy 26 | constitutional 27 | conway 28 | corbyn 29 | court order 30 | david duke 31 | detention 32 | diplomat 33 | diplomatic 34 | election 35 | fbi 36 | federal agencies 37 | federal agency 38 | feminism 39 | feminist 40 | government 41 | governments 42 | handcuffs 43 | hate 44 | hatred 45 | immigration 46 | inauguration 47 | isis 48 | ivanka 49 | legislation 50 | nazi 51 | nazis 52 | obama 53 | parliament 54 | pentagon 55 | political 56 | politician 57 | politicians 58 | politics 59 | president 60 | pride 61 | protest 62 | protesting 63 | protestor 64 | protestors 65 | protests 66 | putin 67 | religion 68 | religious 69 | republican 70 | republicans 71 | sean spicer 72 | senate 73 | senator 74 | senators 75 | sjw 76 | steve bannon 77 | supreme court 78 | supremacy 79 | supremacist 80 | tax dollars 81 | taxes 82 | terrorist 83 | terrorists 84 | trump 85 | war 86 | white house 87 | ``` 88 | 89 | 90 | ## Sports 91 | 92 | ``` 93 | boxing 94 | football 95 | golf 96 | hockey 97 | rugby 98 | soccer 99 | swimming 100 | tennis 101 | wrestling 102 | ``` 103 | 104 | 105 | ## Other 106 | 107 | ``` 108 | cat 109 | dog 110 | fake news 111 | #flatearth 112 | flat earth 113 | kardashian 114 | overwatch 115 | snapchat 116 | stock market 117 | untappd 118 | uber 119 | samsung 120 | violence 121 | scary movie 122 | ghost 123 | horror 124 | ``` 125 | 126 | 127 | ## License 128 | 129 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 130 | --------------------------------------------------------------------------------