Skip to content

Commit bde37da

Browse files
committed
chore: add .editorconfig, .gitattributes and renovate.json
1 parent a50844e commit bde37da

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
indent_style = tab
7+
indent_size = 2
8+
charset = utf-8
9+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto eol=lf
2+
/packages/**/test/** -linguist-detectable
3+
/packages/**/fixtures/** -linguist-detectable

renovate.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"extends": [
3+
"config:recommended",
4+
":preserveSemverRanges",
5+
"group:allNonMajor",
6+
":semanticCommitTypeAll(chore)"
7+
],
8+
"pin": {
9+
"enabled": false
10+
},
11+
"ignoreDeps": ["@types/node", "esbuild", "rollup", "typescript"],
12+
"packageRules": [
13+
{
14+
"matchPackageNames": ["vite"],
15+
"matchUpdateTypes": ["major"],
16+
"enabled": false
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)