mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-12 20:52:31 +00:00
🔨 Rename lint script to format
This commit is contained in:
parent
ba1cca06a7
commit
c1dea60fe4
11 changed files with 17 additions and 17 deletions
2
.github/workflows/build-github.yml
vendored
2
.github/workflows/build-github.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/test-docsify.yml
vendored
2
.github/workflows/test-docsify.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/test-docusaurus.yml
vendored
2
.github/workflows/test-docusaurus.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/test-github.yml
vendored
2
.github/workflows/test-github.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/test-vuepress.yml
vendored
2
.github/workflows/test-vuepress.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in a new issue