-
Notifications
You must be signed in to change notification settings - Fork 47
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
3c9bacb
commit 12554cc
Showing
27 changed files
with
3,006 additions
and
2,640 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This is an example environment file for configuring dynamic values. | ||
# This can be removed or changed with better solutions in the future. | ||
# It should *only* be kept as long as there are no sensitive values in here. | ||
E2E_BASE_URL=http://localhost:8080/openmrs | ||
E2E_USER_ADMIN_USERNAME=Admin | ||
E2E_USER_ADMIN_PASSWORD=Admin123 | ||
E2E_LOGIN_DEFAULT_LOCATION_NAME=Outpatient Clinic | ||
E2E_LOGIN_DEFAULT_LOCATION_UUID=44c3efb0-2583-4c80-a79e-1f756a03c0a1 |
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,4 +1,4 @@ | ||
src/**/*.test.tsx | ||
src/**/*.spec.tsx | ||
**/*.d.tsx | ||
**/node_modules/**/* | ||
**/node_modules/**/* |
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,37 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"extends": [ | ||
"ts-react-important-stuff", | ||
"plugin:prettier/recommended" | ||
], | ||
"rules": { | ||
"curly": [ | ||
"error", | ||
"all" | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
"extends": ["ts-react-important-stuff", "plugin:prettier/recommended"], | ||
"rules": { | ||
"curly": ["error", "all"], | ||
"no-restricted-imports": [ | ||
"error", | ||
{ | ||
"paths": [ | ||
{ | ||
"name": "lodash", | ||
"message": "Import specific methods from `lodash-es`. e.g. `import map from 'lodash-es/map'`" | ||
}, | ||
{ | ||
"name": "lodash-es", | ||
"message": "Import specific methods from `lodash-es`. e.g. `import map from 'lodash-es/map'`" | ||
} | ||
], | ||
"patterns": [ | ||
{ | ||
"group": ["carbon-components-react"], | ||
"message": "Import from `@carbon/react` directly. e.g. `import { Toggle } from '@carbon/react'`" | ||
}, | ||
{ | ||
"group": ["@carbon/icons-react"], | ||
"message": "Import from `@carbon/react/icons`. e.g. `import { ChevronUp } from '@carbon/react/icons'`" | ||
}, | ||
{ | ||
"group": ["@import '~carbon-components/src/globals/scss/vars'"], | ||
"message": "Import from `@carbon/styles/scss`. e.g. `@use '@carbon/styles/scss/type'`" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ dist/ | |
node_modules/ | ||
**/*.md | ||
**/*.json | ||
**/*.yml | ||
**/*.yml |
Empty file.
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,6 @@ | ||
# This is an example environment file for configuring dynamic values. | ||
E2E_BASE_URL=http://localhost:8080/openmrs | ||
E2E_USER_ADMIN_USERNAME=admin | ||
E2E_USER_ADMIN_PASSWORD=Admin123 | ||
E2E_LOGIN_DEFAULT_LOCATION_UUID=44c3efb0-2583-4c80-a79e-1f756a03c0a1 | ||
# The above location UUID is for the "Outpatient Clinic" location in the reference application |
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.