From 1693d45864309c4730029cd27acc8e5beb8174ac Mon Sep 17 00:00:00 2001 From: l4kr Date: Wed, 13 Sep 2023 16:11:53 +0200 Subject: [PATCH] acid testing --- .github/workflows/futon-deploy.yaml | 8 +------- .stylelintrc.json | 3 +++ 2 files changed, 4 insertions(+), 7 deletions(-) create mode 100644 .stylelintrc.json diff --git a/.github/workflows/futon-deploy.yaml b/.github/workflows/futon-deploy.yaml index c571030..6c66f43 100644 --- a/.github/workflows/futon-deploy.yaml +++ b/.github/workflows/futon-deploy.yaml @@ -1,4 +1,4 @@ -name: Lint Workflow +name: Lint on: pull_request: @@ -17,12 +17,6 @@ jobs: node-version: '16.x' - name: Install dependencies run: npm install - - name: Initialize ESLint configuration file - run: npx eslint --init - - name: Initialize Stylelint configuration file - run: npx stylelint --init - - name: Initialize HTMLHint configuration file - run: npx htmlhint --init - name: Lint CSS files run: npx stylelint '**/*.css' --config .stylelintrc.json - name: Lint JavaScript files diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..3cb0b1e --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "stylelint-config-twbs-bootstrap" +}