Skip to content

Commit

Permalink
реактивность и фетч
Browse files Browse the repository at this point in the history
  • Loading branch information
Rustam Medvedev committed Jan 20, 2024
1 parent 2003366 commit 5fc7b14
Show file tree
Hide file tree
Showing 79 changed files with 7,429 additions and 682 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[*]
indent_size = 2
indent_style = space

[*.json]
indent_size = 2
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/dist
/public
**/*.min.js
**/*.d.ts
/node_modules
46 changes: 46 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"plugins": ["@typescript-eslint", "prettier", "unicorn", "simple-import-sort"],
"parser": "@typescript-eslint/parser",
"extends": ["airbnb-base", "plugin:unicorn/recommended", "plugin:prettier/recommended", "prettier"],
"env": {
"es6": true,
"browser": true
},
"rules": {
"unicorn/prevent-abbreviations": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": "warn",
"import/extensions": "off",
"import/no-extraneous-dependencies": "warn",
"unicorn/no-array-for-each": "off",
"no-undef": "off",
"unicorn/no-null": "warn",
"class-methods-use-this": "warn",
"unicorn/filename-case": "off",
"no-param-reassign": ["error", { "props": false }],
"simple-import-sort/imports": [
"error",
{
"groups": [
["^\\u0000"],
["^"],
["^widgets"],
["^features"],
["^entities"],
["^shared"],
["(?!\\./styles\\.module\\.scss$)(\\./.*)"],
["^\\."]
]
}
],
"simple-import-sort/exports": "error",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"no-shadow": ["warn", { "builtinGlobals": false, "hoist": "functions", "allow": [], "ignoreOnInitialization": false }],
"camelcase": "warn"
}
}
4 changes: 2 additions & 2 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"printWidth": 120,
"endOfLine": "lf",
"endOfLine": "crlf",
"singleQuote": true,
"tabWidth": 2,
"indentStyle": "space",
"useTabs": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid"
}
}
9 changes: 9 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": "upper"
},
"ignoreFiles": [
"dist/*"
]
}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Апдейты

Была добавлена реактивность элементов, теперь можно вводить данные в инпут и будет высвечиваться ошибка!

# О проекте

Привет, это мой первый учебный проект на Яндекс.практикум
Expand All @@ -20,3 +24,4 @@
### [макет (незакончен)](<https://www.figma.com/file/rxBLi5OAmiuqKN46hu1tDY/Chat_external_link-(Copy)?node-id=48685%3A851&mode=dev>)

### [ссылка](https://tiny-stroopwafel-9abb82.netlify.app/)

Loading

0 comments on commit 5fc7b14

Please sign in to comment.