Skip to content

Commit 24d422a

Browse files
authored
Added task 1
1 parent f60b80e commit 24d422a

File tree

11 files changed

+3462
-0
lines changed

11 files changed

+3462
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
.husky
3+
node_modules
4+
dist
5+
coverage

.prettierrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
printWidth: 120,
3+
tabWidth: 2,
4+
semi: true,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
arrowParens: 'always',
8+
};

cspell.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": "0.2",
3+
"ignorePaths": [
4+
],
5+
"dictionaryDefinitions": [
6+
],
7+
"dictionaries": [
8+
],
9+
"words": [
10+
"fixts",
11+
"harf",
12+
"nums",
13+
"sqre",
14+
"Vitest"
15+
],
16+
"ignoreWords": [
17+
],
18+
"import": [
19+
]
20+
}

0 commit comments

Comments
 (0)