Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"extends": ["@hellroot/stylelint-config"]
"extends": ["@hellroot/stylelint-config"],
"rules": {
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["global"]
}]
}
}
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ language: node_js
node_js:
- "10"
script:
- npm run test
- npm run lint
99 changes: 87 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@
"not op_mini all"
],
"dependencies": {
"@types/jest": "24.0.12",
"@types/node": "11.13.8",
"@types/react": "16.8.15",
"@types/react-dom": "16.8.4",
"react": "16.8.6",
"react-dom": "16.8.6"
"react-dom": "16.8.6",
"react-virtualized": "9.21.0"
},
"devDependencies": {
"@hellroot/eslint-config": "1.8.0",
"@hellroot/stylelint-config": "1.1.0",
"@types/react-virtualized": "9.21.1",
"eslint": "5.12.0",
"npm-run-all": "4.1.5",
"prettier": "1.17.0",
Expand Down
Binary file removed public/favicon.ico
Binary file not shown.
5 changes: 2 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
<html lang="ru">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="shortcut icon" href="%PUBLIC_URL%/ya-mail-favicon.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<title>React App</title>
<title>Яндекс.Почта</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
Binary file added public/ya-mail-favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 0 additions & 27 deletions src/app/app.css

This file was deleted.

25 changes: 0 additions & 25 deletions src/app/app.jsx

This file was deleted.

8 changes: 8 additions & 0 deletions src/app/app.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.app {
width: available;
min-width: 950px;
min-height: 100%;
margin-right: 22px;
margin-left: 22px;
font-family: 'Helvetica Neue', sans-serif;
}
11 changes: 0 additions & 11 deletions src/app/app.test.jsx

This file was deleted.

Loading