Skip to content

Instantly share code, notes, and snippets.

@MarkTiedemann
Last active June 27, 2017 21:08
Show Gist options
  • Save MarkTiedemann/8835f7fdbf8179b5af4da241e8032582 to your computer and use it in GitHub Desktop.
Save MarkTiedemann/8835f7fdbf8179b5af4da241e8032582 to your computer and use it in GitHub Desktop.
Build `Dim Files on Github` Regex
# PowerShell command to build a regex for Dim Files on Github
# see: https://github.com/bfred-it/dim-files-on-github
# README
#
# Copy-and-paste the lines below into your PowerShell.
# Then hit enter: The built regex will be copied to your
# clipboard automatically.
'^\.', `
'.lock', `
'license', `
'copyrightnotice', `
'copyright-notice', `
'copyright_notice', `
'code-of-conduct', `
'code_of_conduct', `
'contributing', `
'authors', `
'changelog', `
'patent', `
'patents', `
'issue-template', `
'issue_template', `
'maintainers', `
'pull_request_template', `
'cname', `
'circle.yml', `
'appveyor.yml', `
'npm-shrinkwrap.json' `
-join '|' | clip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment