chore: init
This commit is contained in:
commit
868cd731c5
9 changed files with 83 additions and 0 deletions
17
.config/cspell/common-dictionary.txt
Normal file
17
.config/cspell/common-dictionary.txt
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
# NOTE: Please read the notice below carefully! #
|
||||||
|
# This file SHOULD NOT be edited on a per-repo basis #
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
|
||||||
|
# # # # # # # # # # # # # # # # # # # # #
|
||||||
|
# CSpell Common Dictionary #
|
||||||
|
# #
|
||||||
|
# This file specifies words common to #
|
||||||
|
# all projects created from this #
|
||||||
|
# template. This file should not be #
|
||||||
|
# modified on a per-repo basis; instead #
|
||||||
|
# the project-dictionary should be #
|
||||||
|
# modified to suit. #
|
||||||
|
# # # # # # # # # # # # # # # # # # # # #
|
||||||
|
|
||||||
|
astrial
|
9
.config/cspell/project-dictionary.txt
Normal file
9
.config/cspell/project-dictionary.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# # # # # # # # # # # # # # # # # # # # #
|
||||||
|
# CSpell Project Dictionary #
|
||||||
|
# #
|
||||||
|
# Use this file to specify custom words #
|
||||||
|
# specific to this project. Shared #
|
||||||
|
# words inherited from the template are #
|
||||||
|
# specified in the common-dictionary #
|
||||||
|
# file instead. #
|
||||||
|
# # # # # # # # # # # # # # # # # # # # #
|
12
.editorconfig
Normal file
12
.editorconfig
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.yaml]
|
||||||
|
indent_size = 2
|
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
7
.vscode/extensions.json
vendored
Normal file
7
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"streetsidesoftware.code-spell-checker",
|
||||||
|
"EditorConfig.EditorConfig"
|
||||||
|
],
|
||||||
|
"unwantedRecommendations": []
|
||||||
|
}
|
0
LICENSE
Normal file
0
LICENSE
Normal file
0
README.md
Normal file
0
README.md
Normal file
38
cspell.config.yaml
Normal file
38
cspell.config.yaml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
|
||||||
|
|
||||||
|
version: '0.2'
|
||||||
|
allowCompoundWords: true
|
||||||
|
dictionaryDefinitions:
|
||||||
|
- name: common-dictionary
|
||||||
|
path: './.config/cspell/common-dictionary.txt'
|
||||||
|
addWords: true
|
||||||
|
|
||||||
|
- name: project-dictionary
|
||||||
|
path: './.config/cspell/project-dictionary.txt'
|
||||||
|
addWords: true
|
||||||
|
dictionaries:
|
||||||
|
- project-dictionary
|
||||||
|
- common-dictionary
|
||||||
|
|
||||||
|
- softwareTerms
|
||||||
|
- companies
|
||||||
|
- filetypes
|
||||||
|
|
||||||
|
- en-gb
|
||||||
|
ignorePaths:
|
||||||
|
- '.config/cspell/*.txt'
|
||||||
|
|
||||||
|
# Rust
|
||||||
|
- 'target/**'
|
||||||
|
- 'Cargo.lock'
|
||||||
|
|
||||||
|
# Node.js
|
||||||
|
- 'node_modules/**'
|
||||||
|
- 'dist/**'
|
||||||
|
- 'build/**'
|
||||||
|
|
||||||
|
- 'coverage/**'
|
||||||
|
|
||||||
|
# Git
|
||||||
|
- '.git/**'
|
0
src/.gitkeep
Normal file
0
src/.gitkeep
Normal file
Loading…
Reference in a new issue