Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bokub committed Sep 11, 2023
1 parent 71930b2 commit 7753200
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Signaler un bug, demander une fonctionnalité, ou poser une question
title: ''
labels: ''
assignees: ''

---

<!--
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Notez qu'il vous faut un compteur Linky et un espace client Enedis pour pouvoir
### Installation

1. Installez [Node.js](https://nodejs.org/fr/download) sur votre machine. La version minimale supportée est Node 16.
- [Instructions Debian, Ubuntu & Mint](https://github.com/nodesource/distributions#installation-instructions)
- [Installateur Windows](https://nodejs.org/dist/v18.16.0/node-v18.16.0-x86.msi)
- [Installateur MacOS](https://nodejs.org/dist/v18.16.0/node-v18.16.0.pkg)
- [Instructions Debian, Ubuntu & Mint](https://github.com/nodesource/distributions#installation-instructions)
- [Installateur Windows](https://nodejs.org/dist/v18.16.0/node-v18.16.0-x86.msi)
- [Installateur MacOS](https://nodejs.org/dist/v18.16.0/node-v18.16.0.pkg)
2. Ouvrez un terminal
3. Installez `linky` avec `npm`:

Expand Down Expand Up @@ -180,8 +180,8 @@ session.userAgent = 'Mon super service';

// Récupère la consommation quotidienne du 1er au 3 mai 2023
session.getDailyConsumption('2023-05-01', '2023-05-04').then((result) => {
console.log(result);
/*
console.log(result);
/*
{
"reading_type": {
"unit": "Wh",
Expand All @@ -198,8 +198,8 @@ session.getDailyConsumption('2023-05-01', '2023-05-04').then((result) => {

// Récupère la puissance moyenne consommée le 1er mai 2023, sur un intervalle de 30 min
session.getLoadCurve('2023-05-01', '2023-05-02').then((result) => {
console.log(result);
/*
console.log(result);
/*
{
"reading_type": {
"unit": "W",
Expand All @@ -215,8 +215,8 @@ session.getLoadCurve('2023-05-01', '2023-05-02').then((result) => {

// Récupère la puissance maximale de consommation atteinte quotidiennement du 1er au 3 mai 2023
session.getMaxPower('2023-05-01', '2023-05-04').then((result) => {
console.log(result);
/*
console.log(result);
/*
{
"reading_type": {
"unit": "VA",
Expand All @@ -233,8 +233,8 @@ session.getMaxPower('2023-05-01', '2023-05-04').then((result) => {

// Récupère la production quotidienne du 1er au 3 mai 2023
session.getDailyProduction('2023-05-01', '2023-05-04').then((result) => {
console.log(result);
/*
console.log(result);
/*
{
"reading_type": {
"unit": "Wh",
Expand All @@ -251,8 +251,8 @@ session.getDailyProduction('2023-05-01', '2023-05-04').then((result) => {

// Récupère la puissance moyenne produite le 1er mai 2023, sur un intervalle de 30 min
session.getProductionLoadCurve('2023-05-01', '2023-05-02').then((result) => {
console.log(result);
/*
console.log(result);
/*
{
"reading_type": {
"unit": "W",
Expand Down

0 comments on commit 7753200

Please sign in to comment.