11 lines
347 B
Bash
Executable File
11 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
if [ -f node_modules/.bin/lint-staged ]; then
|
|
yarn run --silent lint:staged
|
|
else
|
|
echo 'Trying to run lint:staged inside Docker, if you want things quicker yarn install locally.'
|
|
docker-compose run --rm --no-deps web yarn run lint:staged ||
|
|
echo 'You should run `yarn` locally or check to make sure docker is running.'
|
|
fi
|
|
|
|
exit 0
|