Skip to content

Commit b8a9749

Browse files
Merge pull request #4693 from OneCommunityGlobal/veda-review-volume-over-time-chart
Veda review volume over time chart
2 parents dd46017 + e935447 commit b8a9749

86 files changed

Lines changed: 997 additions & 1173 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc

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

.editorconfig

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

.env.development

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

.eslintignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Dependencies
2+
node_modules
3+
4+
# Build output
5+
build
6+
dist
7+
*.min.js
8+
9+
# Vendor / third-party (tinymce copied to public by postinstall)
10+
public/tinymce
11+
12+
# Scripts not part of app source
13+
postinstall.js
14+
refactor-css-classes.js
15+
16+
# Coverage and test artifacts
17+
coverage
18+
*.test.js.snap

.eslintignore.bak

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Dependencies
2+
node_modules
3+
4+
# Build output
5+
build
6+
dist
7+
*.min.js
8+
9+
# Vendor / third-party (tinymce copied to public by postinstall)
10+
public/tinymce
11+
12+
# Scripts not part of app source
13+
postinstall.js
14+
refactor-css-classes.js
15+
16+
# Coverage and test artifacts
17+
coverage
18+
*.test.js.snap

.eslintrc.js

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

.eslintrc.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
2+
"env": {
3+
"browser": true,
4+
"es2022": true
5+
},
6+
"parserOptions": {
7+
"ecmaVersion": 2022,
8+
"sourceType": "module",
9+
"ecmaFeatures": {
10+
"jsx": true
11+
}
12+
},
13+
"plugins": ["react", "react-hooks", "jsx-a11y", "import", "prettier", "testing-library"],
14+
"extends": ["prettier"],
15+
"settings": {
16+
"react": { "version": "detect" },
17+
"import/ignore": ["\\.css$", "\\.min\\.js$"]
18+
},
219
"rules": {
320
"no-restricted-imports": [
4-
"error",
21+
"warn",
522
{
623
"patterns": ["*.css", "!*.module.css", "!index.css"]
724
}

.gitattributes

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

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/pull_request_template.md

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

0 commit comments

Comments
 (0)