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

ISTEX Theme and Front refactoring #19

Merged
merged 22 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
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
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ tab_width = 2
indent_size = 2
tab_width = 2

[*.scss]
indent_size = 2
tab_width = 2
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
tdm-be/node_modules/
tdm-be/dist/
tdm-fe/node_modules/
tdm-fe/.next/
tdm-fe/.stylelintcache
.gitlab-ci.yml
helm/*
tdm-be/environment-recette.ts
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
environment:
NODE_ENV: development
ports:
- "8080:8080"
- "5173:5173"
volumes:
- ./tdm-fe:/app
working_dir: /app
Expand Down
15 changes: 11 additions & 4 deletions tdm-fe/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json"
"project": "tsconfig.eslint.json",
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
},
"root": true,
"env": {
"node": false,
"node": true,
"jest": true,
"browser": true
},
"extends": [
"@draconides/eslint-config-ts",
"@draconides/eslint-config-react",
"next/core-web-vitals"
"@draconides/eslint-config-react"
]
}
19 changes: 19 additions & 0 deletions tdm-fe/.stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-twbs-bootstrap"
],
"rules": {
"declaration-no-important": null,
"scss/dollar-variable-default": [
true,
{
"ignore": "local"
}
],
"selector-max-class": null,
"selector-max-type": null,
"selector-no-qualifying-type": null,
"selector-max-id": 3
}
}
17 changes: 17 additions & 0 deletions tdm-fe/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">

<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>IA Factory</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
11 changes: 0 additions & 11 deletions tdm-fe/next.config.js

This file was deleted.

Loading
Loading