Files
install-action/.cspell.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2022-12-09 22:03:48 +09:00
{
"version": "0.2",
"gitignoreRoot": ".",
"useGitignore": true,
"dictionaryDefinitions": [
{
"name": "organization-dictionary",
2023-12-24 19:59:08 +09:00
"path": "https://raw.githubusercontent.com/taiki-e/github-actions/HEAD/.github/.cspell/organization-dictionary.txt",
2022-12-09 22:03:48 +09:00
"addWords": true
},
{
"name": "project-dictionary",
"path": "./.github/.cspell/project-dictionary.txt",
"addWords": true
},
{
"name": "rust-dependencies",
"path": "./.github/.cspell/rust-dependencies.txt",
"addWords": true
}
],
"dictionaries": [
"organization-dictionary",
"project-dictionary",
"rust-dependencies"
],
"ignoreRegExpList": [
// Copyright notice
"Copyright .*",
2025-02-03 07:27:19 +09:00
"SPDX-(File|Snippet)CopyrightText: .*",
2022-12-09 22:03:48 +09:00
// GHA actions/workflows
2025-02-03 07:27:19 +09:00
"uses: .+@[\\w_.-]+",
2022-12-09 22:03:48 +09:00
// GHA context (repo name, owner name, etc.)
2025-02-03 07:27:19 +09:00
"github.[\\w_.-]+ (=|!)= '[^']+'",
2022-12-09 22:03:48 +09:00
// GH username
"( |\\[)@[\\w_-]+",
// Git config username
2025-02-03 07:27:19 +09:00
"git config( --[^ ]+)? user.name .*",
// Username in TODO|FIXME comment
"(TODO|FIXME)\\([\\w_., -]+\\)",
2022-12-09 22:03:48 +09:00
// Cargo.toml authors
2025-02-03 07:27:19 +09:00
"authors *= *\\[[^\\]]*\\]",
"\"[^\"]* <[\\w_.+-]+@[\\w.-]+>\""
2022-12-09 22:03:48 +09:00
],
"languageSettings": [
{
"languageId": ["*"],
2025-02-03 07:27:19 +09:00
"dictionaries": ["bash", "cpp-refined", "rust"]
2022-12-09 22:03:48 +09:00
}
],
"ignorePaths": []
}