All Projects → srcclr → commit-watcher-rules

srcclr / commit-watcher-rules

Licence: Apache-2.0 license
Community rules for Commit Watcher

Programming Languages

ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to commit-watcher-rules

watch-rss
Subscribe your watched GitHub Repository's releases as RSS feeds on Inoreader
Stars: ✭ 24 (+0%)
Mutual labels:  watch
bulbo
🍹 Generate your static site with gulp plugins!
Stars: ✭ 14 (-41.67%)
Mutual labels:  watch
hwatch
A modern alternative to the watch command, records the differences in execution results and can check this differences at after.
Stars: ✭ 370 (+1441.67%)
Mutual labels:  watch
adl
🍿 anime-downloader + trackma wrapper
Stars: ✭ 91 (+279.17%)
Mutual labels:  watch
react-native-android-wear-demo
Showcase of a two-way communication between React Native and Android Wear apps.
Stars: ✭ 93 (+287.5%)
Mutual labels:  watch
must-watch
A list of cybai's must-watch videos
Stars: ✭ 19 (-20.83%)
Mutual labels:  watch
Best
Gifts for Programmers
Stars: ✭ 22 (-8.33%)
Mutual labels:  watch
dynamic-sharding
用动态分片解决pushgateway高可用 单点 HA问题
Stars: ✭ 27 (+12.5%)
Mutual labels:  watch
autorsync
Node.js File Watch + rsync
Stars: ✭ 56 (+133.33%)
Mutual labels:  watch
open-watch
An open-source handmade smartwatch. All of the codes, PCBs and schematics are available. ⌚
Stars: ✭ 35 (+45.83%)
Mutual labels:  watch
zanime
Android app to watch anime vod online for free
Stars: ✭ 52 (+116.67%)
Mutual labels:  watch
Wristkey
A free and open-source offline authenticator app for Wear OS.
Stars: ✭ 65 (+170.83%)
Mutual labels:  watch
WWDChrome
Chrome extension which lets you watch WWDC Developer Videos in Google Chrome (thus not having to use Safari)
Stars: ✭ 18 (-25%)
Mutual labels:  watch
Directions
Directions app for pebble
Stars: ✭ 15 (-37.5%)
Mutual labels:  watch
mix test interactive
Interactive watch mode for Elixir's mix test. https://hexdocs.pm/mix_test_interactive/
Stars: ✭ 36 (+50%)
Mutual labels:  watch
3dub
www dev server with livereload, file watching, http2, https, self signed cert generation
Stars: ✭ 28 (+16.67%)
Mutual labels:  watch
talks
Awesome Talks
Stars: ✭ 27 (+12.5%)
Mutual labels:  watch
Me-TV
It's TV for me computer.
Stars: ✭ 39 (+62.5%)
Mutual labels:  watch
watch-behavior
小程序自定义组件扩展 behavior, watch 属性实现
Stars: ✭ 18 (-25%)
Mutual labels:  watch
WatchSomething
Project that uses an API to list movies and tv shows that are latest, popular, top rated & on air.
Stars: ✭ 11 (-54.17%)
Mutual labels:  watch

commit-watcher-rules

Commit Watcher finds interesting and potentially hazardous commits in git projects. Watch your own projects to make sure you didn't accidentally leak your AWS keys or other credentials, and watch open-source projects you use to find undisclosed security vulnerabilities and patches.

This project contains a collection of rules you can use with Commit Watcher.

Submitting Rules

To submit a rule to this project, use this commit as an example: https://github.com/srcclr/commit-watcher/commit/3ae9e2d340f1ac4d10c9ebffae64c22b0a6ac706

Let's break down the rule a bit:

{
  name: 'markdown_file',
  rule_type_id: 1,
  value: '(?i)\.(md|markdown)\z',
  description: 'Markdown file'
}

There are four different values for the rule:

  1. name - unique name, valid characters are alpha numeric, '-', '_', and '.'
  2. rule_type_id - this is the ID for a rule type described above
  3. value - regular expression; this example could be read as "case insensitive, starts with a '.' and is followed either by 'md' or 'markdown' and then the end of the string"
  4. description - free text field for describing the rule

Any submissions made to the community rules will be Apache 2.0 licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].