Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/cSpell/cspell.config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
##
# @file
# cSpell configuration file.
#
# @copyright
# Copyright (c) 2025, Codevenience Organization. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-3-Clause
#
# @par Specification Reference:
# - https://cspell.org/docs/Configuration/properties
#
##

$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json

version: '0.2'

dictionaryDefinitions:
- name: repo-dict
path: './repo-dict.txt'
addWords: true

dictionaries:
- repo-dict

ignorePaths:
- '**/node_modules/**'
# Ignore cSpell dictionary files and configuration files.
- '**/.github/cSpell/**'
16 changes: 16 additions & 0 deletions .github/cSpell/repo-dict.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
##
# @file
# Dictionary file for repository specific commands and terminologies.
#
# @copyright
# Copyright (c) 2025, Codevenience Organization. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-3-Clause
#
# @par Specification Reference:
#
##

Codevenience

retval
52 changes: 52 additions & 0 deletions .github/workflows/spelling-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
##
# @file
# Configuration file to check the spelling.
#
# @copyright
# Copyright (c) 2025, Codevenience Organization. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-3-Clause
#
# @par Specification Reference:
#
##

name: Quality - Spelling Check

on:
push:
pull_request:
types: [opened, reopened]

jobs:
spelling-check:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]

runs-on : ${{ matrix.os }}

steps:
- name: Checkout the repository and commit
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
lfs: true

- name: Checkout LFS objects
run: git lfs checkout

- uses: streetsidesoftware/cspell-action@v6
with:
files: '**'
check_dot_files: explicit
root: '.'
treat_flagged_words_as_errors: true
suggestions: true
strict: true
incremental_files_only: false
config: './.github/cSpell/cspell.config.yml'
verbose: true
use_cspell_files: false