mirror of
https://github.com/taiki-e/install-action.git
synced 2025-12-27 01:54:13 -05:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"version": "0.2",
|
|
"gitignoreRoot": ".",
|
|
"useGitignore": true,
|
|
"dictionaryDefinitions": [
|
|
{
|
|
"name": "organization-dictionary",
|
|
"path": "https://raw.githubusercontent.com/taiki-e/github-actions/HEAD/.github/.cspell/organization-dictionary.txt",
|
|
"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 .*",
|
|
"SPDX-(File|Snippet)CopyrightText: .*",
|
|
// GHA actions/workflows
|
|
"uses: .+@[\\w_.-]+",
|
|
// GHA context (repo name, owner name, etc.)
|
|
"github.[\\w_.-]+ (=|!)= '[^']+'",
|
|
// GH username
|
|
"( |\\[)@[\\w_-]+",
|
|
// Git config username
|
|
"git config( --[^ ]+)? user.name .*",
|
|
// Username in TODO|FIXME comment
|
|
"(TODO|FIXME)\\([\\w_., -]+\\)",
|
|
// Cargo.toml authors
|
|
"authors *= *\\[[^\\]]*\\]",
|
|
"\"[^\"]* <[\\w_.+-]+@[\\w.-]+>\""
|
|
],
|
|
"languageSettings": [
|
|
{
|
|
"languageId": ["*"],
|
|
"dictionaries": ["bash", "cpp-refined", "rust"]
|
|
}
|
|
],
|
|
"ignorePaths": []
|
|
}
|