├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── autofix.yml │ ├── lint.yml │ ├── release-please.yml │ ├── smoke.yml │ ├── test-action.yml │ ├── test.yml │ ├── update-cspell.yml │ ├── update-dependencies.yml │ └── update-pnpm.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .release-please-manifest.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RUN-BOOK.md ├── SECURITY.md ├── action-src ├── .gitignore ├── README.md ├── build.mjs ├── cspell.json ├── fixtures │ ├── README.md │ ├── bad_params │ │ ├── bad_incremental_files_only.json │ │ ├── bad_inline.json │ │ ├── bad_root.json │ │ ├── bad_strict.json │ │ ├── bad_unsupported_event.json │ │ └── missing_config.json │ ├── commits.json │ ├── cspell.json │ ├── event_unknown.json │ ├── missing-include │ │ ├── cspell-config.yaml │ │ └── missing_include.json │ ├── pr_1594_context.json │ ├── pr_1594_env.json │ ├── pr_1594_event.json │ ├── pr_1594_raw.json │ ├── pull_request.json │ ├── pull_request_2.json │ ├── pull_request_2_context.json │ ├── pull_request_2_payload.json │ ├── pull_request_context.json │ ├── pull_request_payload.json │ ├── pull_request_with_files.json │ ├── push.json │ ├── push_context.json │ ├── push_payload.json │ ├── reporting │ │ ├── cspell.config.yaml │ │ └── samples_with_errors │ │ │ └── withErrors.ts │ └── sampleCode │ │ ├── samples_with_errors │ │ ├── cspell.config.yaml │ │ └── withErrors.ts │ │ └── ts │ │ ├── cspell.config.yaml │ │ └── sample.ts ├── package.json ├── src-build │ └── import-meta-url.cjs ├── src │ ├── ActionParams.test.ts │ ├── ActionParams.ts │ ├── __snapshots__ │ │ └── action.test.ts.snap │ ├── action.test.ts │ ├── action.ts │ ├── checkDotMap.ts │ ├── checkSpelling.test.ts │ ├── checkSpelling.ts │ ├── error.test.ts │ ├── error.ts │ ├── getActionParams.ts │ ├── git.test.ts │ ├── git.ts │ ├── logger.test.ts │ ├── logger.ts │ ├── main.test.ts │ ├── main.ts │ ├── main_root.test.ts │ ├── main_root.ts │ ├── reporter.test.ts │ ├── reporter.ts │ ├── spell.test.ts │ ├── spell.ts │ ├── test │ │ └── helper.ts │ ├── utils.test.ts │ └── utils.ts ├── tsconfig.json └── vitest.config.ts ├── action.yaml ├── action ├── .gitignore ├── README.md ├── lib │ └── main_root.cjs ├── node_modules │ └── @cspell │ │ ├── cspell-bundled-dicts │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-default.config.js │ │ ├── cspell-default.json │ │ └── package.json │ │ ├── dict-ada │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── ada.txt │ │ └── package.json │ │ ├── dict-al │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── al.txt │ │ └── package.json │ │ ├── dict-aws │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── aws.txt │ │ └── package.json │ │ ├── dict-bash │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ └── package.json │ │ ├── dict-companies │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── README.md │ │ │ └── companies.txt │ │ └── package.json │ │ ├── dict-cpp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── cpp-legacy.txt │ │ │ ├── cpp-refined.txt │ │ │ └── cpp.txt.gz │ │ └── package.json │ │ ├── dict-cryptocurrencies │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── cryptocurrencies-legacy.txt │ │ │ └── cryptocurrencies.txt │ │ └── package.json │ │ ├── dict-csharp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── csharp.txt.gz │ │ ├── cspell-ext.json │ │ └── package.json │ │ ├── dict-css │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── css.txt │ │ └── package.json │ │ ├── dict-dart │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dart.txt.gz │ │ └── package.json │ │ ├── dict-data-science │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── data-science-models.txt │ │ │ ├── data-science-tools.txt │ │ │ └── data-science.txt │ │ └── package.json │ │ ├── dict-django │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── django.txt │ │ └── package.json │ │ ├── dict-docker │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── docker-words.txt.gz │ │ └── package.json │ │ ├── dict-dotnet │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── README.md │ │ │ └── dotnet.txt │ │ └── package.json │ │ ├── dict-elixir │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── elixir.txt │ │ └── package.json │ │ ├── dict-en-common-misspellings │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── dict-en-gb.json │ │ │ ├── dict-en-us.json │ │ │ └── dict-en.json │ │ └── package.json │ │ ├── dict-en-gb-mit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── en_GB.trie.gz │ │ └── package.json │ │ ├── dict-en_us │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── en_US.trie.gz │ │ ├── package.json │ │ └── src │ │ │ └── hunspell │ │ │ └── README_en_US-large.txt │ │ ├── dict-filetypes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── filetypes.txt.gz │ │ └── package.json │ │ ├── dict-flutter │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── flutter.txt.gz │ │ └── package.json │ │ ├── dict-fonts │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── fonts.txt │ │ └── package.json │ │ ├── dict-fsharp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── fsharp.txt │ │ └── package.json │ │ ├── dict-fullstack │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── fullstack.txt │ │ └── package.json │ │ ├── dict-gaming-terms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── game-development.txt │ │ │ └── gaming-terms.txt │ │ └── package.json │ │ ├── dict-git │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ └── package.json │ │ ├── dict-golang │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── go.txt │ │ └── package.json │ │ ├── dict-google │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── google.txt │ │ └── package.json │ │ ├── dict-haskell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── haskell.txt │ │ └── package.json │ │ ├── dict-html-symbol-entities │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── entities.txt.gz │ │ └── package.json │ │ ├── dict-html │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── html.txt │ │ └── package.json │ │ ├── dict-java │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── java.trie │ │ └── package.json │ │ ├── dict-julia │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── julia.txt │ │ └── package.json │ │ ├── dict-k8s │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── k8s.txt │ │ └── package.json │ │ ├── dict-kotlin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── kotlin.txt │ │ └── package.json │ │ ├── dict-latex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── latex.txt │ │ └── package.json │ │ ├── dict-lorem-ipsum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── lorem.txt │ │ └── package.json │ │ ├── dict-lua │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── lua.txt │ │ └── package.json │ │ ├── dict-makefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── makefile.txt │ │ └── package.json │ │ ├── dict-markdown │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── cspell-ext.yaml │ │ ├── markdown.txt.gz │ │ └── package.json │ │ ├── dict-monkeyc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── monkeyc_keywords.txt.gz │ │ └── package.json │ │ ├── dict-node │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── node.txt │ │ └── package.json │ │ ├── dict-npm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── npm.txt │ │ └── package.json │ │ ├── dict-php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── README.md │ │ │ └── php.txt │ │ └── package.json │ │ ├── dict-powershell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── powershell.txt │ │ └── package.json │ │ ├── dict-public-licenses │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── package.json │ │ └── public-licenses.txt.gz │ │ ├── dict-python │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── python-common.txt │ │ │ └── python.txt │ │ └── package.json │ │ ├── dict-r │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── package.json │ │ └── r.txt.gz │ │ ├── dict-ruby │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── ruby.txt │ │ └── package.json │ │ ├── dict-rust │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── rust.txt │ │ └── package.json │ │ ├── dict-scala │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── scala.txt │ │ └── package.json │ │ ├── dict-shell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── README.md │ │ │ ├── bash-words.txt │ │ │ └── shell-all-words.txt │ │ └── package.json │ │ ├── dict-software-terms │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ ├── coding-compound-terms.txt │ │ │ ├── computing-acronyms.txt │ │ │ ├── cspell-corrections.yaml │ │ │ ├── networkingTerms.txt │ │ │ ├── software-tools.txt │ │ │ ├── softwareTerms.txt │ │ │ └── webServices.txt │ │ └── package.json │ │ ├── dict-sql │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── package.json │ │ └── sql.txt.gz │ │ ├── dict-svelte │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── svelte.txt │ │ └── package.json │ │ ├── dict-swift │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── package.json │ │ └── swift.txt.gz │ │ ├── dict-terraform │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── terraform.txt │ │ └── package.json │ │ ├── dict-typescript │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ │ └── typescript.txt │ │ └── package.json │ │ ├── dict-vue │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ └── package.json │ │ └── dict-zig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cspell-ext.json │ │ ├── dict │ │ └── zig.txt │ │ └── package.json └── package.json ├── cspell.json ├── design-docs └── nested-config.md ├── eslint.config.js ├── fixtures ├── bad_params │ ├── bad_inline.json │ ├── bad_root.json │ ├── bad_strict.json │ └── missing_config.json ├── cspell-missing-import.yaml ├── cspell.json ├── event_pr.json ├── event_unknown.json ├── nested │ ├── cspell.json │ └── no-check.md ├── pull_request.json ├── pull_request_context.json ├── pull_request_payload.json ├── pull_request_with_files.json ├── push.json ├── push_context.json ├── push_payload.json ├── sampleCode │ ├── samples_with_errors │ │ └── withErrors.ts │ └── ts │ │ └── sample.ts └── sampleDotFiles │ └── ts │ ├── .dot_dir │ └── sample_nested.ts │ ├── .dot_sample.ts │ └── sample.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── release-please-config.json └── usage.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/smoke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/smoke.yml -------------------------------------------------------------------------------- /.github/workflows/test-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/test-action.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-cspell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/update-cspell.yml -------------------------------------------------------------------------------- /.github/workflows/update-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/update-dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/update-pnpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.github/workflows/update-pnpm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "8.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/README.md -------------------------------------------------------------------------------- /RUN-BOOK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/RUN-BOOK.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action-src/.gitignore: -------------------------------------------------------------------------------- 1 | install-state.gz 2 | .yarn/cache 3 | node_modules 4 | lib 5 | -------------------------------------------------------------------------------- /action-src/README.md: -------------------------------------------------------------------------------- 1 | # action-src 2 | -------------------------------------------------------------------------------- /action-src/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/build.mjs -------------------------------------------------------------------------------- /action-src/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/cspell.json -------------------------------------------------------------------------------- /action-src/fixtures/README.md: -------------------------------------------------------------------------------- 1 | # Fixtures 2 | 3 | Here is a bit of text. 4 | -------------------------------------------------------------------------------- /action-src/fixtures/bad_params/bad_incremental_files_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/bad_params/bad_incremental_files_only.json -------------------------------------------------------------------------------- /action-src/fixtures/bad_params/bad_inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/bad_params/bad_inline.json -------------------------------------------------------------------------------- /action-src/fixtures/bad_params/bad_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/bad_params/bad_root.json -------------------------------------------------------------------------------- /action-src/fixtures/bad_params/bad_strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/bad_params/bad_strict.json -------------------------------------------------------------------------------- /action-src/fixtures/bad_params/bad_unsupported_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/bad_params/bad_unsupported_event.json -------------------------------------------------------------------------------- /action-src/fixtures/bad_params/missing_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/bad_params/missing_config.json -------------------------------------------------------------------------------- /action-src/fixtures/commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/commits.json -------------------------------------------------------------------------------- /action-src/fixtures/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/cspell.json -------------------------------------------------------------------------------- /action-src/fixtures/event_unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/event_unknown.json -------------------------------------------------------------------------------- /action-src/fixtures/missing-include/cspell-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/missing-include/cspell-config.yaml -------------------------------------------------------------------------------- /action-src/fixtures/missing-include/missing_include.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/missing-include/missing_include.json -------------------------------------------------------------------------------- /action-src/fixtures/pr_1594_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pr_1594_context.json -------------------------------------------------------------------------------- /action-src/fixtures/pr_1594_env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pr_1594_env.json -------------------------------------------------------------------------------- /action-src/fixtures/pr_1594_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pr_1594_event.json -------------------------------------------------------------------------------- /action-src/fixtures/pr_1594_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pr_1594_raw.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request_2.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request_2_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request_2_context.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request_2_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request_2_payload.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request_context.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request_payload.json -------------------------------------------------------------------------------- /action-src/fixtures/pull_request_with_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/pull_request_with_files.json -------------------------------------------------------------------------------- /action-src/fixtures/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/push.json -------------------------------------------------------------------------------- /action-src/fixtures/push_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/push_context.json -------------------------------------------------------------------------------- /action-src/fixtures/push_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/push_payload.json -------------------------------------------------------------------------------- /action-src/fixtures/reporting/cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/reporting/cspell.config.yaml -------------------------------------------------------------------------------- /action-src/fixtures/reporting/samples_with_errors/withErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/reporting/samples_with_errors/withErrors.ts -------------------------------------------------------------------------------- /action-src/fixtures/sampleCode/samples_with_errors/cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/sampleCode/samples_with_errors/cspell.config.yaml -------------------------------------------------------------------------------- /action-src/fixtures/sampleCode/samples_with_errors/withErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/sampleCode/samples_with_errors/withErrors.ts -------------------------------------------------------------------------------- /action-src/fixtures/sampleCode/ts/cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/sampleCode/ts/cspell.config.yaml -------------------------------------------------------------------------------- /action-src/fixtures/sampleCode/ts/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/fixtures/sampleCode/ts/sample.ts -------------------------------------------------------------------------------- /action-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/package.json -------------------------------------------------------------------------------- /action-src/src-build/import-meta-url.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src-build/import-meta-url.cjs -------------------------------------------------------------------------------- /action-src/src/ActionParams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/ActionParams.test.ts -------------------------------------------------------------------------------- /action-src/src/ActionParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/ActionParams.ts -------------------------------------------------------------------------------- /action-src/src/__snapshots__/action.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/__snapshots__/action.test.ts.snap -------------------------------------------------------------------------------- /action-src/src/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/action.test.ts -------------------------------------------------------------------------------- /action-src/src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/action.ts -------------------------------------------------------------------------------- /action-src/src/checkDotMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/checkDotMap.ts -------------------------------------------------------------------------------- /action-src/src/checkSpelling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/checkSpelling.test.ts -------------------------------------------------------------------------------- /action-src/src/checkSpelling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/checkSpelling.ts -------------------------------------------------------------------------------- /action-src/src/error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/error.test.ts -------------------------------------------------------------------------------- /action-src/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/error.ts -------------------------------------------------------------------------------- /action-src/src/getActionParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/getActionParams.ts -------------------------------------------------------------------------------- /action-src/src/git.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/git.test.ts -------------------------------------------------------------------------------- /action-src/src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/git.ts -------------------------------------------------------------------------------- /action-src/src/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/logger.test.ts -------------------------------------------------------------------------------- /action-src/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/logger.ts -------------------------------------------------------------------------------- /action-src/src/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/main.test.ts -------------------------------------------------------------------------------- /action-src/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/main.ts -------------------------------------------------------------------------------- /action-src/src/main_root.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/main_root.test.ts -------------------------------------------------------------------------------- /action-src/src/main_root.ts: -------------------------------------------------------------------------------- 1 | import { run } from './main.js'; 2 | 3 | run(); 4 | -------------------------------------------------------------------------------- /action-src/src/reporter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/reporter.test.ts -------------------------------------------------------------------------------- /action-src/src/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/reporter.ts -------------------------------------------------------------------------------- /action-src/src/spell.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/spell.test.ts -------------------------------------------------------------------------------- /action-src/src/spell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/spell.ts -------------------------------------------------------------------------------- /action-src/src/test/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/test/helper.ts -------------------------------------------------------------------------------- /action-src/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/utils.test.ts -------------------------------------------------------------------------------- /action-src/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/src/utils.ts -------------------------------------------------------------------------------- /action-src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/tsconfig.json -------------------------------------------------------------------------------- /action-src/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action-src/vitest.config.ts -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action.yaml -------------------------------------------------------------------------------- /action/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/.gitignore -------------------------------------------------------------------------------- /action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/README.md -------------------------------------------------------------------------------- /action/lib/main_root.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/lib/main_root.cjs -------------------------------------------------------------------------------- /action/node_modules/@cspell/cspell-bundled-dicts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/cspell-bundled-dicts/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/cspell-bundled-dicts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/cspell-bundled-dicts/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/cspell-bundled-dicts/cspell-default.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/cspell-bundled-dicts/cspell-default.config.js -------------------------------------------------------------------------------- /action/node_modules/@cspell/cspell-bundled-dicts/cspell-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/cspell-bundled-dicts/cspell-default.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/cspell-bundled-dicts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/cspell-bundled-dicts/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ada/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ada/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ada/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ada/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ada/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ada/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ada/dict/ada.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ada/dict/ada.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ada/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ada/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-al/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-al/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-al/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-al/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-al/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-al/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-al/dict/al.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-al/dict/al.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-al/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-al/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-aws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-aws/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-aws/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-aws/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-aws/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-aws/dict/aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-aws/dict/aws.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-aws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-aws/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-bash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-bash/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-bash/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-bash/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-bash/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-bash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-bash/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-companies/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-companies/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-companies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-companies/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-companies/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-companies/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-companies/dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-companies/dict/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-companies/dict/companies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-companies/dict/companies.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-companies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-companies/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/dict/cpp-legacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/dict/cpp-legacy.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/dict/cpp-refined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/dict/cpp-refined.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/dict/cpp.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/dict/cpp.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cpp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cpp/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cryptocurrencies/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cryptocurrencies/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cryptocurrencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cryptocurrencies/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cryptocurrencies/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cryptocurrencies/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cryptocurrencies/dict/cryptocurrencies-legacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cryptocurrencies/dict/cryptocurrencies-legacy.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cryptocurrencies/dict/cryptocurrencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cryptocurrencies/dict/cryptocurrencies.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-cryptocurrencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-cryptocurrencies/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-csharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-csharp/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-csharp/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-csharp/csharp.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-csharp/csharp.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-csharp/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-csharp/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-csharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-csharp/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-css/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-css/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-css/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-css/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-css/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-css/dict/css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-css/dict/css.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-css/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dart/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dart/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dart/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dart/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dart/dart.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dart/dart.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dart/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/dict/data-science-models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/dict/data-science-models.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/dict/data-science-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/dict/data-science-tools.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/dict/data-science.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/dict/data-science.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-data-science/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-data-science/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-django/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-django/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-django/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-django/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-django/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-django/dict/django.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-django/dict/django.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-django/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-django/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-docker/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-docker/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-docker/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-docker/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-docker/docker-words.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-docker/docker-words.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-docker/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dotnet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dotnet/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dotnet/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dotnet/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dotnet/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dotnet/dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dotnet/dict/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dotnet/dict/dotnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dotnet/dict/dotnet.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-dotnet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-dotnet/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-elixir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-elixir/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-elixir/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-elixir/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-elixir/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-elixir/dict/elixir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-elixir/dict/elixir.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-elixir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-elixir/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/dict/dict-en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/dict/dict-en-gb.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/dict/dict-en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/dict/dict-en-us.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/dict/dict-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/dict/dict-en.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-common-misspellings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-common-misspellings/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-gb-mit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-gb-mit/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-gb-mit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-gb-mit/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-gb-mit/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-gb-mit/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-gb-mit/en_GB.trie.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-gb-mit/en_GB.trie.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en-gb-mit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en-gb-mit/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en_us/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en_us/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en_us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en_us/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en_us/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en_us/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en_us/en_US.trie.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en_us/en_US.trie.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en_us/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en_us/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-en_us/src/hunspell/README_en_US-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-en_us/src/hunspell/README_en_US-large.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-filetypes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-filetypes/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-filetypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-filetypes/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-filetypes/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-filetypes/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-filetypes/filetypes.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-filetypes/filetypes.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-filetypes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-filetypes/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-flutter/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-flutter/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-flutter/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-flutter/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-flutter/flutter.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-flutter/flutter.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-flutter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-flutter/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fonts/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fonts/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fonts/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fonts/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fonts/dict/fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fonts/dict/fonts.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fonts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fonts/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fsharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fsharp/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fsharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fsharp/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fsharp/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fsharp/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fsharp/dict/fsharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fsharp/dict/fsharp.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fsharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fsharp/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fullstack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fullstack/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fullstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fullstack/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fullstack/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fullstack/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fullstack/dict/fullstack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fullstack/dict/fullstack.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-fullstack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-fullstack/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-gaming-terms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-gaming-terms/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-gaming-terms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-gaming-terms/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-gaming-terms/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-gaming-terms/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-gaming-terms/dict/game-development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-gaming-terms/dict/game-development.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-gaming-terms/dict/gaming-terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-gaming-terms/dict/gaming-terms.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-gaming-terms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-gaming-terms/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-git/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-git/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-git/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-git/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-git/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-git/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-git/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-golang/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-golang/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-golang/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-golang/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-golang/dict/go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-golang/dict/go.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-golang/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-golang/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-google/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-google/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-google/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-google/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-google/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-google/dict/google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-google/dict/google.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-google/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-google/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-haskell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-haskell/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-haskell/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-haskell/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-haskell/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-haskell/dict/haskell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-haskell/dict/haskell.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-haskell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-haskell/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html-symbol-entities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html-symbol-entities/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html-symbol-entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html-symbol-entities/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html-symbol-entities/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html-symbol-entities/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html-symbol-entities/entities.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html-symbol-entities/entities.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html-symbol-entities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html-symbol-entities/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html/dict/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html/dict/html.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-html/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-java/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-java/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-java/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-java/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-java/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-java/dict/java.trie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-java/dict/java.trie -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-java/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-java/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-julia/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-julia/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-julia/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-julia/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-julia/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-julia/dict/julia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-julia/dict/julia.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-julia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-julia/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-k8s/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-k8s/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-k8s/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-k8s/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-k8s/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-k8s/dict/k8s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-k8s/dict/k8s.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-k8s/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-k8s/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-kotlin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-kotlin/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-kotlin/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-kotlin/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-kotlin/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-kotlin/dict/kotlin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-kotlin/dict/kotlin.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-kotlin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-kotlin/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-latex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-latex/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-latex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-latex/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-latex/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-latex/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-latex/dict/latex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-latex/dict/latex.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-latex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-latex/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lorem-ipsum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lorem-ipsum/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lorem-ipsum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lorem-ipsum/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lorem-ipsum/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lorem-ipsum/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lorem-ipsum/dict/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lorem-ipsum/dict/lorem.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lorem-ipsum/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lorem-ipsum/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lua/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lua/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lua/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lua/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lua/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lua/dict/lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lua/dict/lua.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-lua/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-lua/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-makefile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-makefile/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-makefile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-makefile/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-makefile/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-makefile/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-makefile/dict/makefile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-makefile/dict/makefile.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-makefile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-makefile/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-markdown/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-markdown/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-markdown/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-markdown/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-markdown/cspell-ext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-markdown/cspell-ext.yaml -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-markdown/markdown.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-markdown/markdown.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-markdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-markdown/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-monkeyc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-monkeyc/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-monkeyc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-monkeyc/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-monkeyc/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-monkeyc/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-monkeyc/monkeyc_keywords.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-monkeyc/monkeyc_keywords.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-monkeyc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-monkeyc/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-node/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-node/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-node/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-node/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-node/dict/node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-node/dict/node.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-node/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-npm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-npm/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-npm/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-npm/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-npm/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-npm/dict/npm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-npm/dict/npm.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-npm/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-php/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-php/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-php/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-php/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-php/dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-php/dict/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-php/dict/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-php/dict/php.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-php/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-php/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-powershell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-powershell/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-powershell/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-powershell/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-powershell/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-powershell/dict/powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-powershell/dict/powershell.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-powershell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-powershell/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-public-licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-public-licenses/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-public-licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-public-licenses/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-public-licenses/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-public-licenses/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-public-licenses/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-public-licenses/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-public-licenses/public-licenses.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-public-licenses/public-licenses.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-python/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-python/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-python/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-python/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-python/dict/python-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-python/dict/python-common.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-python/dict/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-python/dict/python.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-python/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-r/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-r/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-r/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-r/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-r/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-r/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-r/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-r/r.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-r/r.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ruby/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ruby/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ruby/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ruby/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ruby/dict/ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ruby/dict/ruby.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-ruby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-ruby/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-rust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-rust/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-rust/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-rust/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-rust/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-rust/dict/rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-rust/dict/rust.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-rust/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-scala/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-scala/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-scala/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-scala/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-scala/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-scala/dict/scala.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-scala/dict/scala.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-scala/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-scala/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/dict/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/dict/bash-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/dict/bash-words.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/dict/shell-all-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/dict/shell-all-words.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-shell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-shell/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/coding-compound-terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/coding-compound-terms.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/computing-acronyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/computing-acronyms.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/cspell-corrections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/cspell-corrections.yaml -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/networkingTerms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/networkingTerms.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/software-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/software-tools.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/softwareTerms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/softwareTerms.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/dict/webServices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/dict/webServices.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-software-terms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-software-terms/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-sql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-sql/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-sql/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-sql/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-sql/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-sql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-sql/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-sql/sql.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-sql/sql.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-svelte/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-svelte/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-svelte/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-svelte/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-svelte/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-svelte/dict/svelte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-svelte/dict/svelte.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-svelte/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-swift/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-swift/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-swift/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-swift/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-swift/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-swift/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-swift/swift.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-swift/swift.txt.gz -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-terraform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-terraform/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-terraform/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-terraform/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-terraform/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-terraform/dict/terraform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-terraform/dict/terraform.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-terraform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-terraform/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-typescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-typescript/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-typescript/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-typescript/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-typescript/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-typescript/dict/typescript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-typescript/dict/typescript.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-typescript/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-vue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-vue/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-vue/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-vue/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-vue/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-vue/package.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-zig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-zig/LICENSE -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-zig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-zig/README.md -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-zig/cspell-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-zig/cspell-ext.json -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-zig/dict/zig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-zig/dict/zig.txt -------------------------------------------------------------------------------- /action/node_modules/@cspell/dict-zig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/node_modules/@cspell/dict-zig/package.json -------------------------------------------------------------------------------- /action/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/action/package.json -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/cspell.json -------------------------------------------------------------------------------- /design-docs/nested-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/design-docs/nested-config.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/eslint.config.js -------------------------------------------------------------------------------- /fixtures/bad_params/bad_inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/bad_params/bad_inline.json -------------------------------------------------------------------------------- /fixtures/bad_params/bad_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/bad_params/bad_root.json -------------------------------------------------------------------------------- /fixtures/bad_params/bad_strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/bad_params/bad_strict.json -------------------------------------------------------------------------------- /fixtures/bad_params/missing_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/bad_params/missing_config.json -------------------------------------------------------------------------------- /fixtures/cspell-missing-import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/cspell-missing-import.yaml -------------------------------------------------------------------------------- /fixtures/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/cspell.json -------------------------------------------------------------------------------- /fixtures/event_pr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/event_pr.json -------------------------------------------------------------------------------- /fixtures/event_unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/event_unknown.json -------------------------------------------------------------------------------- /fixtures/nested/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/nested/cspell.json -------------------------------------------------------------------------------- /fixtures/nested/no-check.md: -------------------------------------------------------------------------------- 1 | # Not checkkked. 2 | -------------------------------------------------------------------------------- /fixtures/pull_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/pull_request.json -------------------------------------------------------------------------------- /fixtures/pull_request_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/pull_request_context.json -------------------------------------------------------------------------------- /fixtures/pull_request_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/pull_request_payload.json -------------------------------------------------------------------------------- /fixtures/pull_request_with_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/pull_request_with_files.json -------------------------------------------------------------------------------- /fixtures/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/push.json -------------------------------------------------------------------------------- /fixtures/push_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/push_context.json -------------------------------------------------------------------------------- /fixtures/push_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/push_payload.json -------------------------------------------------------------------------------- /fixtures/sampleCode/samples_with_errors/withErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/sampleCode/samples_with_errors/withErrors.ts -------------------------------------------------------------------------------- /fixtures/sampleCode/ts/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/sampleCode/ts/sample.ts -------------------------------------------------------------------------------- /fixtures/sampleDotFiles/ts/.dot_dir/sample_nested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/sampleDotFiles/ts/.dot_dir/sample_nested.ts -------------------------------------------------------------------------------- /fixtures/sampleDotFiles/ts/.dot_sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/sampleDotFiles/ts/.dot_sample.ts -------------------------------------------------------------------------------- /fixtures/sampleDotFiles/ts/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/fixtures/sampleDotFiles/ts/sample.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | packages: 3 | - action-src 4 | -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/release-please-config.json -------------------------------------------------------------------------------- /usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetsidesoftware/cspell-action/HEAD/usage.yaml --------------------------------------------------------------------------------