Skip to content

Commit

Permalink
Remove warnings, format code
Browse files Browse the repository at this point in the history
  • Loading branch information
kowalski7cc committed Nov 7, 2019
1 parent fcd1372 commit 1a2466f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 21 deletions.
25 changes: 12 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
</a>
</p>


La più grande collezione di appunti del corso di informatica degli studenti della Bicocca

## 🚀 Quick start
Expand All @@ -30,7 +29,7 @@ La più grande collezione di appunti del corso di informatica degli studenti del
cd bicoccahub/
npm install
```

1. **Inizia a sviluppare.**

Avvia il server di sviluppo con il comando `gatsby develop`
Expand Down Expand Up @@ -69,10 +68,10 @@ Come specificato nella sezione precedente, il file da modificare per aggiungere
```yaml
- year: <Anno del corso>
subjects:
- name: <Nome del corso>
repositories:
- owner: <Nome utente>
url: <L'indirizzo della repository>
- name: <Nome del corso>
repositories:
- owner: <Nome utente>
url: <L'indirizzo della repository>
```
Per aggiungere un nuovo repository sarà quindi sufficiente seguire lo schema sopra citato seguendo le corrette regole di spaziatura, aggiungendo un record di questo tipo:
Expand All @@ -87,14 +86,14 @@ ottenendo quindi il seguente risultato
```yaml
- year: <Anno del corso>
subjects:
- name: <Nome del corso>
repositories:
- owner: <Nome utente>
url: <L'indirizzo della repository>
- owner: <Il tuo nome utente>
url: <L'indirizzo della tua nuova repository>
- name: <Nome del corso>
repositories:
- owner: <Nome utente>
url: <L'indirizzo della repository>
- owner: <Il tuo nome utente>
url: <L'indirizzo della tua nuova repository>
```

Prima di inviare una [pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request) è necessario accertarsi che il sito compili senza nessun `error` e possibilmente senza nessun `warning`.

Ulteriori guide sono disponibili all'indirizzo [https://bicoccahub.netlify.com/contribuisci](https://bicoccahub.netlify.com/contribuisci)
Ulteriori guide sono disponibili all'indirizzo [https://bicoccahub.netlify.com/contribuisci](https://bicoccahub.netlify.com/contribuisci)
4 changes: 2 additions & 2 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ module.exports = {
author: `@kowalski7cc, @amarusofia, @dlcgold, @daverhapsody`,
siteUrl: "https://bicoccahub.netlify.com",
version: "2.1.0",
repoUrl: "https://github.com/BicoccaHUB/bicoccahub"
repoUrl: "https://github.com/BicoccaHUB/bicoccahub",
},
plugins: [
`gatsby-plugin-react-helmet`,
'gatsby-transformer-yaml',
`gatsby-transformer-yaml`,
{
resolve: `gatsby-source-filesystem`,
options: {
Expand Down
6 changes: 4 additions & 2 deletions src/components/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import React from "react"
import PropTypes from "prop-types"

import Header from "./header"
import { useStaticQuery } from "gatsby"
import { useStaticQuery, graphql } from "gatsby"

const Layout = ({ hero, children }) => {
const data = useStaticQuery(graphql`
Expand All @@ -29,7 +29,9 @@ const Layout = ({ hero, children }) => {
{children}
</div>
<footer className="text-center align align-middle">
BicoccaHUB {data.site.siteMetadata.version} - Copyright Sofia Amaru ({(new Date()).getFullYear()}), released under MIT License - <a href={data.site.siteMetadata.repoUrl}>Fork me on GitHub</a>
BicoccaHUB {data.site.siteMetadata.version} - Copyright Sofia Amaru (
{new Date().getFullYear()}), released under MIT License -{" "}
<a href={data.site.siteMetadata.repoUrl}>Fork me on GitHub</a>
</footer>
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react"

import { graphql } from "gatsby"
import Layout from "../components/layout"
import SEO from "../components/seo"
import {
Expand Down
7 changes: 4 additions & 3 deletions src/pages/staff.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from "react"
import Layout from "../components/layout"
import SEO from "../components/seo"
import { Container, Row, Col } from "react-bootstrap"
import { graphql } from "gatsby"

function Staff({ data }) {
return (
Expand Down Expand Up @@ -83,21 +84,21 @@ function Staff({ data }) {

export const query = graphql`
{
coders: staffYaml(team: {eq: "coders"}) {
coders: staffYaml(team: { eq: "coders" }) {
members {
name
image
url
}
}
authors: staffYaml(team: {eq: "authors"}) {
authors: staffYaml(team: { eq: "authors" }) {
members {
name
image
url
}
}
thanks: staffYaml(team: {eq: "thanks"}) {
thanks: staffYaml(team: { eq: "thanks" }) {
members {
name
image
Expand Down

0 comments on commit 1a2466f

Please sign in to comment.