-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfa7486
commit a9c756b
Showing
37 changed files
with
614 additions
and
820 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,14 +25,13 @@ repos: | |
hooks: | ||
- id: csslint | ||
- repo: https://github.com/pre-commit/mirrors-eslint | ||
rev: 'v9.0.0-rc.0' # Use the sha / tag you want to point at | ||
rev: 'v9.2.0' # Use the sha / tag you want to point at | ||
hooks: | ||
- id: eslint | ||
additional_dependencies: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- eslint | ||
- eslint-loader | ||
- eslint-prettier | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: 'v4.0.0-alpha.8' # Use the sha / tag you want to point at | ||
hooks: | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2024-05-10 pierrre <pierrre@PAR03240> | ||
|
||
* optimisation of website: removed handlebars, replaced by js templates | ||
* optimisation of website: removed fontawesome, replace by a selection of icons in svg format | ||
* optimisation of website: added a service worker to improve caching | ||
|
||
2023-11-12 pierre <[email protected]> | ||
|
||
* tests/test_go.py: tests are not passing for mysterious reasons | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import js from "@eslint/js"; | ||
import eslintConfigPrettier from "eslint-config-prettier"; | ||
|
||
import globals from "globals"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
{ | ||
rules: { | ||
"no-unused-vars": "error", | ||
"no-undef": "warn" | ||
}, | ||
languageOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
globals: { | ||
...globals.browser | ||
} | ||
} | ||
}, | ||
eslintConfigPrettier, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,20 @@ | ||
{ | ||
"dependencies": { | ||
"bulma.js": "^0.0.1", | ||
"bulmajs": "^0.0.2", | ||
"fnm": "^0.0.0", | ||
"eslint": "^9.2.0", | ||
"fuse.js": "^7.0.0", | ||
"handlebars": "^4.7.8", | ||
"html-validate": "^7.13.2", | ||
"html-validator": "^5.1.18", | ||
"html-validator-cli": "^2.0.0", | ||
"node": "^21.1.0", | ||
"npm": "^10.2.3", | ||
"plotly": "^1.0.6", | ||
"plotly.js": "^2.32.0", | ||
"sass": "^1.58.0", | ||
"typescript-language-server": "^3.3.2" | ||
"plotly.js-dist-min": "^2.32.0", | ||
"terser": "^5.31.0", | ||
"vite": "^5.2.11", | ||
"vitest": "^1.6.0", | ||
"w3c-html-validator": "^1.8.1", | ||
"workbox-cli": "^7.1.0", | ||
"workbox-window": "^7.1.0" | ||
}, | ||
"devDependencies": { | ||
"critical": "^7.1.1", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"flow": "^0.2.3", | ||
"flow-remove-types": "^2.232.0", | ||
"prettier": "^3.1.0", | ||
"pyright": "^1.1.356", | ||
"standard": "^17.1.0", | ||
"terser": "^5.30.3", | ||
"w3c-html-validator": "^1.7.0", | ||
"workbox-cli": "^7.1.0", | ||
"workbox-window": "^7.1.0" | ||
"prettier": "^3.2.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** @type {import("prettier").Config} */ | ||
const config = { | ||
trailingComma: "es5", | ||
useTabs: false, | ||
semi: true, | ||
singleQuote: true, | ||
printWidth: 128, | ||
parser: "flow" | ||
}; | ||
|
||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.