Skip to content

Commit 547611a

Browse files
committed
Refresh project-system
1 parent e5c6fad commit 547611a

File tree

7 files changed

+235
-3
lines changed

7 files changed

+235
-3
lines changed

.editorconfig

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
root = true
2+
3+
[*]
4+
indent_size = 4
5+
indent_style = space
6+
tab_width = 4
7+
insert_final_newline = true
8+
9+
resharper_comment_typo_highlighting = do_not_show
10+
resharper_markup_attribute_typo_highlighting = do_not_show
11+
resharper_markup_text_typo_highlighting = do_not_show
12+
resharper_string_literal_typo_highlighting = do_not_show
13+
14+
15+
[*.{cs,cshtml,as?x}]
16+
charset = utf-8-bom
17+
trim_trailing_whitespace = true
18+
19+
20+
[*.{xml,csproj,props,build,targets,config,ruleset,nuspec,resx,vsixmanifest,browser}]
21+
indent_size = 2
22+
23+
24+
[*.resx]
25+
trim_trailing_whitespace = false
26+
insert_final_newline = false
27+
28+
29+
[*.json]
30+
charset = utf-8-bom
31+
indent_size = 2
32+
33+
34+
[*.txt]
35+
charset = utf-8-bom
36+
37+
38+
[*.{tf,tfrc,hcl}]
39+
charset = utf-8
40+
indent_size = 2
41+
trim_trailing_whitespace = true
42+
43+
44+
[*.{yaml,yml}]
45+
charset = utf-8
46+
indent_size = 2
47+
trim_trailing_whitespace = true
48+
49+
50+
[robots.txt]
51+
charset = utf-8
52+
53+
54+
[*.{js,cjs,ts}]
55+
charset = utf-8
56+
indent_size = 2
57+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
* text=auto
2+
3+
AUTHORS text
4+
CHANGELOG text
5+
CHANGES text
6+
CONTRIBUTING text
7+
COPYING text
8+
INSTALL text
9+
LICENSE text
10+
README* text
11+
12+
*.txt text
13+
*.doc diff=astextplain
14+
*.docx diff=astextplain
15+
*.dot diff=astextplain
16+
*.pdf diff=astextplain
17+
*.rtf diff=astextplain
18+
*.markdown text diff=markdown
19+
*.md text diff=markdown
20+
21+
*.in text eol=lf
22+
*.sh text eol=lf diff=bash
23+
*.bash text eol=lf diff=bash
24+
*.zsh text eol=lf
25+
26+
*.bat text eol=crlf
27+
*.cmd text eol=crlf
28+
*.ps1 text eol=crlf
29+
30+
*.c text diff=cpp
31+
*.cpp text diff=cpp
32+
*.cxx text diff=cpp
33+
*.h text diff=cpp
34+
*.hpp text diff=cpp
35+
*.hxx text diff=cpp
36+
*.inc text diff=cpp
37+
38+
*.csr text -diff eol=lf
39+
*.crt text -diff eol=lf
40+
*.pem text -diff eol=lf
41+
*.cer binary
42+
*.der binary
43+
*.pfx binary
44+
*.p12 binary
45+
46+
*.asm text
47+
*.pl text diff=perl
48+
*.rb text eol=lf diff=ruby
49+
*.py text eol=lf diff=python
50+
*.php text diff=php
51+
*.java text diff=java
52+
*.lua text
53+
*.go text diff=golang
54+
*.rs text diff=rust
55+
56+
*.js text
57+
*.cjs text
58+
*.ts text
59+
*.tsx text
60+
*.css text diff=css
61+
*.scss text diff=css
62+
*.less text
63+
*.htm text diff=html
64+
*.html text diff=html
65+
*.xhtml text diff=html
66+
67+
*.service text eol=lf
68+
*.pp text
69+
*.erb text eol=lf
70+
*.epp text eol=lf
71+
72+
*.rc text eol=lf
73+
*.ini text
74+
*.toml text
75+
*.yaml text
76+
*.yml text
77+
*.xml text
78+
*.json text
79+
80+
*.cfg text
81+
*.conf text
82+
*.config text
83+
84+
Makefile text
85+
makefile text
86+
Gemfile text
87+
Rakefile text
88+
Dockerfile text
89+
90+
.editorconfig text
91+
.globalconfig text
92+
93+
*.cs text diff=csharp
94+
*.resx text
95+
*.fs text
96+
*.fsx text
97+
*.props text
98+
*.targets text
99+
*.cshtml text diff=html
100+
*.sln text eol=crlf merge=union
101+
*.csproj text merge=union
102+
103+
*.tf text
104+
*.tfrc text
105+
*.hcl text
106+
*.tftpl text eol=lf
107+
*.lock.hcl text -diff
108+
109+
*.patch -text
110+
111+
package-lock.json text -diff
112+
*.lock text -diff
113+
114+
*.exe binary
115+
*.dll binary
116+
*.pyc binary
117+
118+
*.bmp binary
119+
*.png binary
120+
*.jpg binary
121+
*.jpeg binary
122+
*.gif binary
123+
*.tif binary
124+
*.tiff binary
125+
*.ico binary
126+
*.eps binary
127+
*.psd binary
128+
*.webp binary
129+
*.svg text
130+
131+
*.7z binary
132+
*.br binary
133+
*.gz binary
134+
*.bz2 binary
135+
*.rar binary
136+
*.tar binary
137+
*.tgz binary
138+
*.zip binary
139+
*.jar binary
140+
*.apk binary
141+
142+
*.ttf binary
143+
*.woff binary
144+
*.woff2 binary
145+
146+
.gitattributes text export-ignore
147+
.gitignore text export-ignore
148+
.gitkeep text export-ignore

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
/target
2-
/data
1+
# Shared
2+
.idea/
3+
4+
# Rust
5+
target/
6+
7+
# Local
8+
/data/

.markdownlint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"MD013": false,
44
"MD022": false,
55
"MD031": false,
6-
"MD032": false
6+
"MD032": false,
7+
"MD033": false,
78
}

.trunk/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*out
2+
external

.trunk/trunk.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 0.1
2+
cli:
3+
version: 0.14.0-beta
4+
lint:
5+
enabled:
6+
7+

.vscode/extensions.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"editorconfig.editorconfig",
4+
"trunk.io",
5+
"yzhang.markdown-all-in-one",
6+
"davidanson.vscode-markdownlint",
7+
"streetsidesoftware.code-spell-checker",
8+
"streetsidesoftware.code-spell-checker-russian",
9+
"rust-lang.rust-analyzer",
10+
],
11+
}

0 commit comments

Comments
 (0)