🔨 Rename lint script to format

This commit is contained in:
Yann Bertrand 2021-12-21 12:19:30 +01:00
parent ba1cca06a7
commit c1dea60fe4
No known key found for this signature in database
GPG key ID: F87B5B748AB00DAE
11 changed files with 17 additions and 17 deletions

View file

@ -36,7 +36,7 @@ jobs:
- run: yarn install --frozen-lockfile
working-directory: build/github
- run: yarn lint:ci
- run: yarn lint
working-directory: build/github
- run: yarn test
working-directory: build/github

View file

@ -34,7 +34,7 @@ jobs:
- run: yarn install --frozen-lockfile
working-directory: build/docsify
- run: yarn lint:ci
- run: yarn lint
working-directory: build/docsify
- run: yarn test
working-directory: build/docsify

View file

@ -34,7 +34,7 @@ jobs:
- run: yarn install --frozen-lockfile
working-directory: build/docusaurus
- run: yarn lint:ci
- run: yarn lint
working-directory: build/docusaurus
- run: yarn test
working-directory: build/docusaurus

View file

@ -31,7 +31,7 @@ jobs:
- run: yarn install --frozen-lockfile
working-directory: build/github
- run: yarn lint:ci
- run: yarn lint
working-directory: build/github
- run: yarn test
working-directory: build/github

View file

@ -34,7 +34,7 @@ jobs:
- run: yarn install --frozen-lockfile
working-directory: build/vuepress
- run: yarn lint:ci
- run: yarn lint
working-directory: build/vuepress
- run: yarn test
working-directory: build/vuepress

View file

@ -9,8 +9,8 @@
"build:prod": "yarn build",
"start": "yarn build && npx docsify serve docs",
"test": "jest",
"lint": "prettier --write . --ignore-path ../../.prettierignore",
"lint:ci": "prettier --check . --ignore-path ../../.prettierignore"
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "prettier --check . --ignore-path ../../.prettierignore"
},
"license": "MIT",
"dependencies": {

View file

@ -9,8 +9,8 @@
"build:prod": "yarn build && cd dist/website && docusaurus-build",
"start": "yarn build && cd dist/website && docusaurus-start",
"test": "jest",
"lint": "prettier --write . --ignore-path ../../.prettierignore",
"lint:ci": "prettier --check . --ignore-path ../../.prettierignore"
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "prettier --check . --ignore-path ../../.prettierignore"
},
"license": "MIT",
"dependencies": {

View file

@ -10,8 +10,8 @@
"test": "jest",
"gitmoji-initial-changelog": "gitmoji-changelog --preset generic --output dist-initial/changelog.md",
"gitmoji-changelog": "gitmoji-changelog --preset generic --output dist/changelog.md",
"lint": "prettier --write . --ignore-path ../../.prettierignore",
"lint:ci": "prettier --check . --ignore-path ../../.prettierignore"
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "prettier --check . --ignore-path ../../.prettierignore"
},
"license": "MIT",
"dependencies": {

View file

@ -9,8 +9,8 @@
"build:prod": "yarn build && vuepress build docs --dest dist",
"start": "yarn build && vuepress dev docs",
"test": "jest",
"lint": "prettier --write . --ignore-path ../../.prettierignore",
"lint:ci": "prettier --check . --ignore-path ../../.prettierignore"
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "prettier --check . --ignore-path ../../.prettierignore"
},
"license": "MIT",
"dependencies": {

View file

@ -9,8 +9,8 @@
"build:prod": "yarn build && vuepress build docs --dest dist",
"start": "yarn build && vuepress dev docs",
"test": "jest",
"lint": "prettier --write . --ignore-path ../../.prettierignore",
"lint:ci": "prettier --check . --ignore-path ../../.prettierignore"
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "prettier --check . --ignore-path ../../.prettierignore"
},
"license": "MIT",
"dependencies": {

View file

@ -11,8 +11,8 @@
"record:debug": "NODE_ENV=DEBUG node index.js",
"record:next": "node record-next.mjs",
"build": "yarn record",
"lint": "prettier --write . --ignore-path ../.prettierignore",
"lint:ci": "prettier --check . --ignore-path ../.prettierignore"
"format": "prettier --write . --ignore-path ../.prettierignore",
"lint": "prettier --check . --ignore-path ../.prettierignore"
},
"license": "MIT",
"dependencies": {