This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Напишите приложение для хранения url веб-страниц в виде карточек-закладок. | |
Реализуйте следующий функционал: | |
- Используйте Gulp для сборки проекта, JS обработан транспайлером Babel, ресурсы оптимизированы | |
- Для добавления новой закладки, в приложении есть форма с элементом input и кнопкой "Добавить" | |
- В приложении есть список всех добавленных карточек-закладок, располагающийся под формой | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Возьмите домашнее задание №12 и перепишите его ипользуя паттерн MVC. | |
Вынесите отдельно логику, отдельно представление и реакцию на действия пользователя. | |
Model, View и Controller вынести в отдельные файлы и сделать классами. | |
Используйте ES6 модули и Webpack для сборки. | |
Использование будет выглядеть следующим образом. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Напишите тесты к приложению из домашней работы номер 13. | |
Постарайтесь покрыть тестами как можно больше методов в Model. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Can prefetch css and js | |
function prefetchResource(resourceUrl) { | |
const xhrRequest = new XMLHttpRequest(); | |
xhrRequest.open('GET', resourceUrl, true); | |
xhrRequest.send(); | |
} | |
// Can prefetch everything but support in not great, use for HTML | |
// <link rel="prefetch" href="path-to-content"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"printWidth": 100, | |
"tabWidth": 2, | |
"useTabs": false, | |
"semi": true, | |
"singleQuote": true, | |
"trailingComma": "es5", | |
"bracketSpacing": true, | |
"jsxBracketSameLine": false, | |
"arrowParens": "avoid", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Install packages | |
// npm install --save-dev prettier eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y husky lint-staged | |
{ | |
"extends": [ | |
"eslint:recommended", | |
"react-app", | |
"airbnb", | |
"plugin:import/errors", | |
"plugin:react/recommended", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_style = space | |
indent_size = 2 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rules: | |
block-no-empty: true | |
color-no-invalid-hex: true | |
font-family-no-duplicate-names: true | |
font-family-no-missing-generic-family-keyword: true | |
function-calc-no-invalid: true | |
function-calc-no-unspaced-operator: true | |
function-linear-gradient-no-nonstandard-direction: true | |
string-no-newline: true | |
unit-no-unknown: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alt-require: true | |
attr-lowercase: true | |
attr-no-duplication: true | |
attr-unsafe-chars: true | |
attr-value-double-quotes: true | |
attr-value-not-empty: false | |
doctype-first: true | |
doctype-html5: true | |
head-script-disabled: true | |
href-abs-or-rel: false |