Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TP: fix deploy #11

Open
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d65370f
changed form errors and display of card images
chsd0 Oct 7, 2024
e633276
added jsdoc and sass in dependecies
chsd0 Oct 14, 2024
344e549
TP-11f add: BEM and Sass
chsd0 Oct 14, 2024
953c49f
TP-11f updated prestart
chsd0 Oct 14, 2024
388cf06
TP-11f configured linter, added npm lint commands
chsd0 Oct 17, 2024
fa137a3
TP-11f pr fixes
chsd0 Oct 17, 2024
08dcecb
TP-11f form button is now type=submit
chsd0 Oct 17, 2024
4a2f02f
TP-11f optional chaining added
chsd0 Oct 17, 2024
8ce5d7b
TP-11f changed set.add()
chsd0 Oct 18, 2024
3550e73
TP-11f features padding added
chsd0 Oct 18, 2024
cd0b249
TP-12d: added new pages, updated header
chsd0 Nov 5, 2024
fc7ff1b
TP-12d: small changes
chsd0 Nov 5, 2024
2394c38
TP-12d: added user and seller pages
chsd0 Nov 6, 2024
6e98f93
deploy fixes
chsd0 Nov 6, 2024
346a9c5
fixed: constants + header
ksuysshaa Nov 7, 2024
7530634
fixes
chsd0 Nov 7, 2024
1d4c037
added more cards loading
chsd0 Nov 7, 2024
75206a1
fixes more cards loading
chsd0 Nov 7, 2024
2c699c9
another fix more cards loading
chsd0 Nov 7, 2024
a4974ff
another+ fix more cards loading
chsd0 Nov 7, 2024
23a3c5a
another++ fix more cards loading
chsd0 Nov 7, 2024
3b13e84
added placeholders and updated settings
chsd0 Nov 8, 2024
02fdb06
settings small fix
chsd0 Nov 8, 2024
9644c43
another settings small fix
chsd0 Nov 8, 2024
0ec265b
another+ settings small fix
chsd0 Nov 8, 2024
1f1812b
header small changes
chsd0 Nov 8, 2024
ea24de6
small settings fixes again
chsd0 Nov 8, 2024
00bc3ac
small settings fixes again+
chsd0 Nov 8, 2024
f279f87
fixed scroll on main
chsd0 Nov 8, 2024
e59eb1f
fixed+ scroll on main
chsd0 Nov 8, 2024
599f555
fixed minor issues
Alisa-it Nov 8, 2024
537f561
fixed++ scroll on main
chsd0 Nov 8, 2024
da909bf
applied recommnded changes
chsd0 Nov 8, 2024
9eace37
quick fix
chsd0 Nov 8, 2024
2147ca6
fixed auth form for smaller devices
chsd0 Nov 8, 2024
05350fd
fixed+ auth form for smaller devices
chsd0 Nov 8, 2024
b2ad579
cart fixes
chsd0 Nov 8, 2024
f28b2b5
cart fixes+
chsd0 Nov 8, 2024
c6e7c96
fixed commented problems
chsd0 Nov 13, 2024
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/node_modules
*.precompiled.js
*.css
*.precompiled.js
.sass-cache
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Фронтенд репозиторий проекта Юла команды BogoSort

__Эмпириум__ – это современный онлайн-сервис объявлений, предназначенный для широкой аудитории, которая хочет быстро и удобно продать или купить товары, а также найти специализированного мастера под конкретную задачу, либо предложить услугу.
__Эмпориум__ – это современный онлайн-сервис объявлений, предназначенный для широкой аудитории, которая хочет быстро и удобно продать или купить товары, а также найти специализированного мастера под конкретную задачу, либо предложить услугу.

#### Разработчики
* Агеева Ксения - https://github.com/ksuysshaa
Expand Down
25 changes: 21 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
export default [
{files: ["**/*.js"],
languageOptions: {sourceType: "module"},
{files: ['**/*.js'],
languageOptions: {sourceType: 'module'},
}, {
ignores: ["**/*precompiled.js", "**/*.runtime.js"],
ignores: ['**/*precompiled.js', '**/*.runtime.js', 'server/server.js'],
},
];
{
rules: {
'camelcase': ['warn', {ignoreDestructuring: true}],
'semi': ['warn', 'always'], // точки с запятой
'eol-last': ['warn', 'always'], // Пустая строка в конце файла
'quotes': ['warn', 'single'], // Одинарные кавычки
'no-unused-vars': 'off', // Запрет неиспользуемых переменных
'no-trailing-spaces': 'warn', // Запрет завершающих пробелов
'no-var': 'warn', // Запрет использования var
'prefer-const': 'warn', // Предпочтение const
'no-tabs': 'warn', // Запрет использования табуляции
'newline-before-return': 'warn', // Перенос строки перед return
'no-irregular-whitespace': 'warn', // Запрет неправильных пробелов
'no-multi-spaces': 'warn', // Запрет множественных пробелов
'no-case-declarations': 'off',
},
}
];
Loading