stop-upper

Checks that every file in the given folder is lower case

Usage no npm install needed!

<script type="module">
  import stopUpper from 'https://cdn.skypack.dev/stop-upper';
</script>

README

stop-upper

Checks that every file in the given folder is lower case

NPM

Build status semantic-release standard renovate-app badge

Install

Requires Node version 6 or above.

npm install --save-dev stop-upper

Use

basic

Assuming all interesting files are in the folders "src" and "bin", I recommend create an NPM run script. Use --folder or -f to pass the folder(s) to search.

{
  "scripts": {
    "stop-upper": "stop-upper --folder src --folder bin"
  }
}

Exits with 1 if there is a file with uppercase somewhere inside the folders. Also checks folder names.

warn

If you just want to warn on found uppercase names, use stop-upper --warn <folder> syntax. Alias -w.

Pre-commit or pre-push hook

If using pre-git to configure Git hooks, run this tool as a command

{
  "config": {
    "pre-git": {
      "pre-push": ["npm run stop-upper"]
    }
  }
}

See package.json (note here we have just local script name).

tip you can warn on commit hook, while fail in pre-push hook.

Commas

You can pass multiple folder names as separate arguments or comma-separated. These are equivalent

stop-upper --folder foo --folder bar
stop-upper -f foo -f bar
stop-upper -f foo,bar

Debugging

You can see additional diagnostic output from this command by running with environment variable DEBUG=stop-upper

CI

On CI run the tool after install, for example see .travis.yml, (note here we have just local script name).

- npm run stop-upper

Related

Small print

Author: Gleb Bahmutov <gleb.bahmutov@gmail.com> © 2018

License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet / open issue on Github

MIT License

Copyright (c) 2018 Gleb Bahmutov <gleb.bahmutov@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.