Skip to content

Commit

Permalink
chore: add cspell
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaZhem committed Jul 11, 2024
1 parent 5e3d263 commit dd9de3a
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 164 deletions.
17 changes: 17 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/master/cspell.schema.json",
"import": ["@taiga-ui/cspell-config"],
"files": ["*/*.*"],
"ignorePaths": [
".git",
".gitignore",
".cspell.json",
"**/dist/**",
"**/assets/**",
"**/node_modules/**",
"*.{log,svg,snap,png,ogv,yml}",
"**/package.json",
"**/tsconfig*.json"
],
"ignoreWords": ["lumbermill", "Segoe", "Roboto", "Consolas", "Menlo", "Neue", "apos"]
}
16 changes: 8 additions & 8 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
# - uses: taiga-family/ci/actions/setup/[email protected]
# - run: npm run typecheck

# cspell:
# runs-on: ubuntu-latest
# steps:
# - uses: taiga-family/ci/actions/setup/[email protected]
# - uses: taiga-family/ci/actions/setup/[email protected]
# - uses: taiga-family/ci/actions/setup/[email protected]
# - run: npm run cspell -- --no-progress
cspell:
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run cspell -- --no-progress

prettier:
runs-on: ubuntu-latest
Expand All @@ -47,7 +47,7 @@ jobs:
- run: npm run lint -- --fix

result:
needs: [prettier, eslint, stylelint]
needs: [cspell, prettier, eslint, stylelint]
runs-on: ubuntu-latest
name: Lint result
steps:
Expand Down
Loading

0 comments on commit dd9de3a

Please sign in to comment.