Skip to content

Commit e000fc6

Browse files
committed
update
1 parent 05f6001 commit e000fc6

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 80
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
max_line_length = 0
15+
trim_trailing_whitespace = false
16+
17+
[COMMIT_EDITMSG]
18+
max_line_length = 0

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ dist-ssr
1313
*.local
1414

1515
# Editor directories and files
16-
.vscode/*
1716
!.vscode/extensions.json
1817
.idea
1918
.DS_Store

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"editor.tabSize": 2,
3+
"editor.rulers": [100],
4+
"editor.formatOnSave": true,
5+
"git.ignoreLimitWarning": true
6+
}

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ function App() {
1111
{process.env.VITE_TEST}
1212
<Hello />
1313
<div>
14-
<a href='https://vitejs.dev' target='_blank'>
14+
<a href='https://vitejs.dev' target='_blank' rel='noreferrer'>
1515
<img src='/vite.svg' className='logo' alt='Vite logo' />
1616
</a>
17-
<a href='https://reactjs.org' target='_blank'>
17+
<a href='https://reactjs.org' target='_blank' rel='noreferrer'>
1818
<img src={reactLogo} className='logo react' alt='React logo' />
1919
</a>
2020
</div>

0 commit comments

Comments
 (0)