Skip to content

Commit

Permalink
Refresh project-system
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxmaster committed Apr 24, 2023
1 parent 574607c commit fc3f8c3
Show file tree
Hide file tree
Showing 6 changed files with 251 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"words": [
"cpumon"
]
}
73 changes: 73 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
root = true

[*]
indent_size = 4
indent_style = space
tab_width = 4
insert_final_newline = true

resharper_comment_typo_highlighting = do_not_show
resharper_markup_attribute_typo_highlighting = do_not_show
resharper_markup_text_typo_highlighting = do_not_show
resharper_string_literal_typo_highlighting = do_not_show


[*.{cs,cshtml,as?x}]
charset = utf-8-bom
trim_trailing_whitespace = true


[*.{xml,csproj,props,build,targets,config,ruleset,nuspec,resx,vsixmanifest,browser}]
indent_size = 2


[*.resx]
trim_trailing_whitespace = false
insert_final_newline = false


[*.json]
charset = utf-8-bom
indent_size = 2


[*.md]
charset = utf-8-bom
indent_size = 2


[*.txt]
charset = utf-8-bom


[*.pp]
charset = utf-8
indent_size = 2
tab_width = 2
trim_trailing_whitespace = true


[*.{tf,tfrc,hcl}]
charset = utf-8
indent_size = 2
trim_trailing_whitespace = true


[*.{yaml,yml}]
charset = utf-8
indent_size = 2
trim_trailing_whitespace = true


[robots.txt]
charset = utf-8


[*.{css,less}]
trim_trailing_whitespace = true


[*.{js,cjs,ts}]
charset = utf-8
indent_size = 2
trim_trailing_whitespace = true
148 changes: 148 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
* text=auto

AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
COPYING text
INSTALL text
LICENSE text
README* text

*.txt text
*.doc diff=astextplain
*.docx diff=astextplain
*.dot diff=astextplain
*.pdf diff=astextplain
*.rtf diff=astextplain
*.markdown text diff=markdown
*.md text diff=markdown

*.in text eol=lf
*.sh text eol=lf diff=bash
*.bash text eol=lf diff=bash
*.zsh text eol=lf

*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf

*.c text diff=cpp
*.cpp text diff=cpp
*.cxx text diff=cpp
*.h text diff=cpp
*.hpp text diff=cpp
*.hxx text diff=cpp
*.inc text diff=cpp

*.csr text -diff eol=lf
*.crt text -diff eol=lf
*.pem text -diff eol=lf
*.cer binary
*.der binary
*.pfx binary
*.p12 binary

*.asm text
*.pl text diff=perl
*.rb text eol=lf diff=ruby
*.py text eol=lf diff=python
*.php text diff=php
*.java text diff=java
*.lua text
*.go text diff=golang
*.rs text diff=rust

*.js text
*.cjs text
*.ts text
*.tsx text
*.css text diff=css
*.scss text diff=css
*.less text
*.htm text diff=html
*.html text diff=html
*.xhtml text diff=html

*.service text eol=lf
*.pp text
*.erb text eol=lf
*.epp text eol=lf

*.rc text eol=lf
*.ini text
*.toml text
*.yaml text
*.yml text
*.xml text
*.json text

*.cfg text
*.conf text
*.config text

Makefile text
makefile text
Gemfile text
Rakefile text
Dockerfile text

.editorconfig text
.globalconfig text

*.cs text diff=csharp
*.resx text
*.fs text
*.fsx text
*.props text
*.targets text
*.cshtml text diff=html
*.sln text eol=crlf merge=union
*.csproj text merge=union

*.tf text
*.tfrc text
*.hcl text
*.tftpl text eol=lf
*.lock.hcl text -diff

*.patch -text

package-lock.json text -diff
*.lock text -diff

*.exe binary
*.dll binary
*.pyc binary

*.bmp binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.tif binary
*.tiff binary
*.ico binary
*.eps binary
*.psd binary
*.webp binary
*.svg text

*.7z binary
*.br binary
*.gz binary
*.bz2 binary
*.rar binary
*.tar binary
*.tgz binary
*.zip binary
*.jar binary
*.apk binary

*.ttf binary
*.woff binary
*.woff2 binary

.gitattributes text export-ignore
.gitignore text export-ignore
.gitkeep text export-ignore
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Shared
.idea/

# C
a.out

# Local
8 changes: 8 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"default": true,
"MD013": false,
"MD022": false,
"MD031": false,
"MD032": false,
"MD033": false
}
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"recommendations": [
"editorconfig.editorconfig",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-russian",
"ms-vscode.cpptools",
]
}

0 comments on commit fc3f8c3

Please sign in to comment.