Skip to content

Commit 58234b5

Browse files
authored
Merge branch 'main' into add_announcement_page
2 parents 8c926c3 + d22fb86 commit 58234b5

22 files changed

+422
-93
lines changed

.eslintrc.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
"extends": ["react-app", "plugin:prettier/recommended"],
44
"ignorePatterns": [
55
// node_modules is implicitly always ignored
6-
"build"
6+
"build",
7+
"coverage"
78
],
89
"settings": {
910
"import/parsers": {
10-
"@typescript-eslint/parser": [
11-
".ts",
12-
".tsx"
13-
]
11+
"@typescript-eslint/parser": [".ts", ".tsx"]
1412
},
1513
"import/resolver": {
1614
"typescript": {
@@ -23,10 +21,7 @@
2321
"rules": {
2422
"prettier/prettier": "warn",
2523
"curly": "error",
26-
"react-refresh/only-export-components": [
27-
"error",
28-
{ "allowConstantExport": true }
29-
],
24+
"react-refresh/only-export-components": ["error", { "allowConstantExport": true }],
3025
"import/no-cycle": [
3126
"error",
3227
{

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@
1919
.env.test.local
2020
.env.production.local
2121

22+
# jest
23+
/coverage

.prettierrc.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.sonarlint/connectedMode.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"sonarCloudOrganization": "gridsuite",
33
"projectKey": "gridsuite_gridadmin-app"
4-
}
4+
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
License, v. 2.0. If a copy of the MPL was not distributed with this
55
file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
-->
7-
<!DOCTYPE html>
7+
<!doctype html>
88
<html lang="en" translate="no">
99
<head>
1010
<base href="/" />

0 commit comments

Comments
 (0)