Gets prettier command working

This commit is contained in:
Mouse Reeve
2022-02-16 12:53:18 -08:00
parent 55177990e3
commit 1412fa507c
5 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1 @@
**/vendor/**

20
dev-tools/.stylelintrc.js Normal file
View File

@ -0,0 +1,20 @@
/* global module */
module.exports = {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"indentation": 4,
"property-no-vendor-prefix": null,
"color-function-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
}
};

View File

@ -2,12 +2,11 @@ FROM python:3.9
ENV PYTHONUNBUFFERED 1
RUN mkdir /app /app/static /app/images
RUN mkdir /app
WORKDIR /app
COPY package.json requirements.txt .stylelintrc.js .stylelintignore /app/
RUN pip install black
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -