-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #567 from javierbrea/release
Use pnpm. Upgrade devDependencies
- Loading branch information
Showing
78 changed files
with
17,757 additions
and
99,874 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Get NPM version is new | ||
- name: Get version is new | ||
id: check | ||
uses: EndBug/[email protected] | ||
with: | ||
|
@@ -22,7 +22,7 @@ jobs: | |
run: | | ||
echo "Version not changed" | ||
exit 1 | ||
- name: Get NPM version | ||
- name: Get version | ||
id: package-version | ||
uses: martinbeentjes/[email protected] | ||
- name: Check Changelog version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run lint-staged | ||
pnpm run lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
const { resolve } = require("path"); | ||
|
||
const DICTIONARIES_BASE_PATH = resolve(__dirname, "cspell"); | ||
|
||
module.exports = { | ||
// Version of the setting file. Always 0.2 | ||
version: "0.2", | ||
// Paths to be ignored | ||
ignorePaths: [ | ||
"**/node_modules/**", | ||
".husky/**", | ||
"**/pnpm-lock.yaml", | ||
"**/cspell/*.txt", | ||
"cspell.config.js", | ||
"**/.gitignore", | ||
"**/coverage/**", | ||
"**/dist/**", | ||
"test-e2e/app/build/**", | ||
"test-e2e/*/cypress/integration/**", | ||
"test-e2e/app/build/**", | ||
"test-e2e/cypress-typescript/cypress/support/cypress-localstorage-commands/**", | ||
"reports/**", | ||
], | ||
caseSensitive: false, | ||
// Language - current active spelling language | ||
language: "en", | ||
// Dictionaries to be used | ||
dictionaryDefinitions: [ | ||
{ | ||
name: "missing", | ||
path: `${DICTIONARIES_BASE_PATH}/missing.txt`, | ||
}, | ||
], | ||
dictionaries: ["missing"], | ||
languageSettings: [ | ||
{ | ||
// In markdown files | ||
languageId: "markdown", | ||
// Exclude code blocks from spell checking | ||
ignoreRegExpList: ["/^\\s*```[\\s\\S]*?^\\s*```/gm"], | ||
}, | ||
], | ||
// The minimum length of a word before it is checked. | ||
minWordLength: 4, | ||
// cspell:disable-next-line FlagWords - list of words to be always considered incorrect. This is useful for offensive words and common spelling errors. For example "hte" should be "the" | ||
flagWords: ["hte"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Brea | ||
commonmark | ||
coverallsapp | ||
javierbrea | ||
Merthin | ||
prelint | ||
sonarcloud | ||
sonarsource | ||
Uninen |
Oops, something went wrong.