chore: init

This commit is contained in:
Compositr 2024-12-15 16:14:26 +08:00
commit 868cd731c5
Signed by: compositr
GPG key ID: 91E3DE20129A0B4A
9 changed files with 83 additions and 0 deletions

View 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

View 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
View 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
View file

7
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,7 @@
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"EditorConfig.EditorConfig"
],
"unwantedRecommendations": []
}

0
LICENSE Normal file
View file

0
README.md Normal file
View file

38
cspell.config.yaml Normal file
View 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
View file