-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- React components prepared for design review JIRA: F1-645 risk: low
- Loading branch information
Andy Chumak
committed
Sep 10, 2024
1 parent
497d458
commit c38906e
Showing
67 changed files
with
1,681 additions
and
82 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
10 changes: 6 additions & 4 deletions
10
libs/sdk-ui-flex-ai/.eslintrc.js → libs/sdk-ui-flex-ai/.eslintrc.cjs
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,16 +1,18 @@ | ||
// (C) 2020-2024 GoodData Corporation | ||
// (C) 2024 GoodData Corporation | ||
module.exports = { | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["react-hooks", "prettier", "sonarjs", "eslint-plugin-tsdoc"], | ||
extends: [ | ||
"@gooddata", | ||
"plugin:react/recommended", | ||
"plugin:import/errors", | ||
"plugin:import/typescript", | ||
"plugin:import-esm/recommended", | ||
"plugin:sonarjs/recommended", | ||
"plugin:regexp/recommended", | ||
"plugin:react-hooks/recommended", | ||
"../../.eslintrc.react.js", | ||
], | ||
parserOptions: { tsconfigRootDir: __dirname }, | ||
rules: { | ||
"react-hooks/rules-of-hooks": "error", | ||
"react-hooks/exhaustive-deps": "error", | ||
}, | ||
}; |
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,5 @@ | ||
styles/css | ||
# ignore the auxiliary file created during build to extract package version | ||
src/__version.ts | ||
# ignore the NOTICE that gets copied here on publish, the source of truth is the root of the repo | ||
NOTICE |
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,21 @@ | ||
module.exports = { | ||
paths: ["./src/localization/bundles"], | ||
structure: true, | ||
intl: true, | ||
html: true, | ||
insightToReport: true, | ||
usage: true, | ||
debug: false, | ||
source: "src/**/*.{ts,js,tsx,jsx}", | ||
rules: [ | ||
{ | ||
pattern: [/.+/], | ||
}, | ||
// some messages are used from kit components so the validator does not "see" them | ||
{ | ||
dir: /src\/localization\/bundles/, | ||
pattern: /^(gs\.date\.(today|tomorrow|yesterday))$/, | ||
ignore: true, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.