Skip to content

André Alves #141

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

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d492181
chore: configuração inicial do projeto
andreluialves Sep 16, 2022
2a4150e
chore: instalação do eslint e stylelint
andreluialves Sep 16, 2022
df6754b
ferat: implementado componente header
andreluialves Sep 22, 2022
467ddf6
feat: implementado componente menu
andreluialves Sep 22, 2022
dff2b79
feat: implementado componente sidebar
andreluialves Sep 22, 2022
2bcd514
feat: implementação do componente menu
andreluialves Sep 22, 2022
ff53620
feat: implementação do componente blogPost(Card)
andreluialves Sep 22, 2022
654df83
chore: instalação de dependências
andreluialves Sep 22, 2022
18fff27
feat: implementação do página inicial
andreluialves Sep 22, 2022
7900c3b
feat: implementação do página que lista os posts
andreluialves Sep 22, 2022
5304255
feat: implementada a conexão com a api
andreluialves Sep 22, 2022
c61c01b
styles: implementado o css geral da aplicação
andreluialves Sep 22, 2022
bca8afe
styles: implementado o css dos componentes e páginas
andreluialves Sep 22, 2022
b90d8b4
chore: arquivo do componente renomeado
andreluialves Sep 22, 2022
c6ae6bb
feat: importações, rotas e título da aplicação
andreluialves Sep 22, 2022
ede160e
chore: exclusão do logo padrão do react
andreluialves Sep 22, 2022
1c20df8
feat: implementação das rotas
andreluialves Sep 22, 2022
bfa1f2e
chore: arquivo do componente renomeado
andreluialves Sep 22, 2022
00b6ce5
static: organização das imagens utilizadas
andreluialves Sep 22, 2022
a943527
chore: organização das funções de apoio para manipular dados
andreluialves Sep 22, 2022
feb9d24
feat: finalização do componente searchbar
andreluialves Sep 22, 2022
1b439b4
static: alteração da imagem de favicon
andreluialves Sep 22, 2022
b48d380
static: ajuste na configuração do eslint
andreluialves Sep 22, 2022
c33c162
style: ajuste de erro do eslint
andreluialves Sep 22, 2022
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
22 changes: 22 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"airbnb"
],
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }]
}
}
3 changes: 3 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "stylelint-config-standard"
}
Loading