1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-14 10:57:41 +01:00
mkdocs-material/scripts/lint

45 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-10-30 19:30:55 +01:00
#!/bin/bash
2017-01-06 19:11:18 +01:00
# Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
2016-10-30 19:30:55 +01:00
# 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 NON-INFRINGEMENT. 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.
# Check if "npm install" was executed
if [[ ! -d `npm bin` ]]; then
2016-10-30 19:30:55 +01:00
echo "\"node_modules\" not found:"
echo "npm install"
exit 1
fi
2016-10-31 09:58:43 +01:00
# Run ESLint
`npm bin`/eslint --max-warnings 0 .
2016-10-31 09:58:43 +01:00
ESLINT=$?
2017-01-01 15:59:44 +01:00
# Run Stylelint
`npm bin`/stylelint `find src/assets -name *.scss`
STYLELINT=$?
2016-10-31 09:58:43 +01:00
# If one command failed, exit with error
2017-01-01 15:59:44 +01:00
if [ $ESLINT -gt 0 ] || [ $STYLELINT -gt 0 ]; then
2016-10-31 09:58:43 +01:00
exit 1
fi;
# Otherwise return with success
exit 0