Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
f46bae0
add fix #285
veeramarni Nov 7, 2022
37ad600
node
veeramarni Nov 8, 2022
2ad15d2
update
veeramarni Nov 8, 2022
472d597
auto build [skip ci]
Nov 8, 2022
d6e6210
update packages
veeramarni Nov 8, 2022
06dbbaf
Merge branch 'develop' of https://github.com/cdmbase/fullstack-pro in…
veeramarni Nov 8, 2022
55abe20
replace react-hot-loader with react-refresh
veeramarni Nov 8, 2022
6633e2f
add type fixes
veeramarni Nov 8, 2022
340891f
Merge branch 'develop' into feat/react-fast-refresh
veeramarni Nov 8, 2022
b66576f
clean up
veeramarni Nov 9, 2022
71b178d
update package script
veeramarni Nov 9, 2022
91ba2f9
add graphql endpoint
veeramarni Nov 9, 2022
f50bdc5
update
veeramarni Nov 9, 2022
07e8c6b
update dep
veeramarni Nov 9, 2022
25481e6
update
veeramarni Nov 9, 2022
074caed
auto build [skip ci]
Nov 9, 2022
07b7969
update
veeramarni Nov 10, 2022
4f98113
Merge branch 'develop' of https://github.com/cdmbase/fullstack-pro in…
veeramarni Nov 10, 2022
80fa129
auto build [skip ci]
Nov 10, 2022
008619a
Merge pull request #286 from cdmbase/fix/285
veeramarni Nov 10, 2022
38ca338
add private
veeramarni Nov 11, 2022
633aca8
update
veeramarni Nov 11, 2022
f49d413
update
veeramarni Nov 11, 2022
d11911c
Merge branch 'develop' of https://github.com/cdmbase/fullstack-pro in…
veeramarni Nov 11, 2022
ad5d3b9
remove version
veeramarni Nov 11, 2022
c21b014
update
veeramarni Nov 11, 2022
bde1d22
update
veeramarni Nov 11, 2022
3ede5fb
remove envalid from main
veeramarni Nov 11, 2022
e1bc637
auto build [skip ci]
Nov 11, 2022
b22c15c
to avoid conflicts
veeramarni Nov 11, 2022
36a8b89
Merge branch 'develop' of https://github.com/cdmbase/fullstack-pro in…
veeramarni Nov 11, 2022
68a1f72
update fix graphql end point
veeramarni Nov 11, 2022
f4527d6
update
veeramarni Nov 12, 2022
3cdc2df
update
veeramarni Nov 14, 2022
c46ad50
add env file only when it exist
veeramarni Nov 14, 2022
208c555
update common-stack
veeramarni Nov 17, 2022
5464b45
resolve port issue and update version
veeramarni Nov 18, 2022
dd714a3
fela version
veeramarni Nov 18, 2022
058b248
to run eas sdk 46
veeramarni Nov 19, 2022
a8f14da
update lint package
veeramarni Nov 19, 2022
5a9aba0
update linting
veeramarni Nov 20, 2022
51cbbea
update
veeramarni Nov 20, 2022
985c42d
update
veeramarni Nov 20, 2022
51fb472
add more husky
veeramarni Nov 20, 2022
7ba73ce
update
veeramarni Nov 20, 2022
1566eb5
update
veeramarni Nov 20, 2022
d22fa98
update changes
veeramarni Nov 20, 2022
80cb039
update prettier write
veeramarni Nov 20, 2022
b82a3d7
update
veeramarni Nov 20, 2022
46cc75e
update config
veeramarni Nov 20, 2022
e60a247
add
veeramarni Nov 20, 2022
3cf3457
update changes
veeramarni Nov 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 6 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
node_modules
dist
lib
lib
**/desktop/release/**
tools/**
values-*.yaml
values.secret.json
webpack.config.js
122 changes: 122 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
const common = {
env: {
node: true,
'jest/globals': true,
},
plugins: ['prettier', 'jest', 'markdown'],
extends: [
'airbnb-base',
'prettier',
'plugin:jest/all',
'plugin:json/recommended',
],
rules: {
'prettier/prettier': 'error',
'jest/no-disabled-tests': 'warn',
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
'jest/prefer-to-have-length': 'warn',
'jest/valid-expect': 'error',
'jest/expect-expect': 'off',
'jest/prefer-expect-assertions': 'off',
'jest/no-test-return-statement': 'off',
'import/prefer-default-export': 'off',
'import/extensions': 'off',
'no-console': 'off',
'no-iterator': 'off',
'no-restricted-syntax': 'off',
'no-await-in-loop': 'off',
'consistent-return': 'off',
'no-shadow': 'off',
'no-unused-vars': 'off',
'jsonc/indent': ['error', 2, {}],
},
globals: {
fetch: true,
window: true,
document: true,
__CDN_URL__: true,
__DEV__: true,
__TEST__: true,
__CLIENT__: true,
__SERVER__: true,
__GRAPHQL_ENDPOINT__: true,
__SSR__: true,
__PERSIST_GQL__: true,
__API_URL__: true,
__WEBSITE_URL__: true,
__FRONTEND_BUILD_DIR__: true,
__API_SERVER_PORT__: true,
__WEB_SERVER_PORT__: true,
__WEB_DEV_SERVER_PORT__: true,
__SERVER_PROTOCOL__: true,
__SERVER_HOST__: true,
__GRAPHQL_ENDPOINT__: true,
},
};
module.exports = {
extends: [
'eslint:recommended',
'plugin:typescript-sort-keys/recommended',
'prettier',
],
overrides: [
{
/*
eslint-plugin-markdown only finds javascript code block snippet.
For specific spec, refer to https://github.com/eslint/eslint-plugin-markdown
*/
files: ['**/*.js', '**/*.md'],
...common,
},
{
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
files: ['**/*.{ts,tsx}'],
globals: common.globals,
rules: {
...common.rules,
'@typescript-eslint/explicit-function-return-type': 'off',
}
},
{
files: '*.json',
parser: 'jsonc-eslint-parser',
rules: {
'jsonc/sort-keys': 'error',
},
extends: ['plugin:jsonc/recommended-with-json', 'plugin:package-json/recommended'],
plugins: ['package-json']
},
{
files: '**/*.test.ts',
rules: {
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
},
},
],
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: [
'./tsconfig.eslint.json',
'./packages/*/tsconfig.json',
'./packages-modules/*/tsconfig.json',
'./servers/*/tsconfig.json',
],
warnOnUnsupportedTypeScriptVersion: false,
EXPERIMENTAL_useSourceOfProjectReferenceRedirect: false,
},
plugins: ['@typescript-eslint', 'simple-import-sort', 'typescript-sort-keys'],
root: true,
rules: {
'simple-import-sort/exports': 'error',
'simple-import-sort/imports': 'error',
},
};
71 changes: 0 additions & 71 deletions .eslintrc.js

This file was deleted.

132 changes: 132 additions & 0 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
# Contributor Covenant Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, caste, color, religion, or sexual
identity and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment for our
community include:

- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
- Focusing on what is best not just for us as individuals, but for the overall
community

Examples of unacceptable behavior include:

- The use of sexualized language or imagery, and sexual attention or advances of
any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email address,
without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.

Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.

## Scope

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
git@joshuakgoldberg.com.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
reporter of any incident.

## Enforcement Guidelines

Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:

### 1. Correction

**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.

**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.

### 2. Warning

**Community Impact**: A violation through a single incident or series of
actions.

**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or permanent
ban.

### 3. Temporary Ban

**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.

**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.

### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within the
community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.1, available at
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].

Community Impact Guidelines were inspired by
[Mozilla's code of conduct enforcement ladder][mozilla coc].

For answers to common questions about this code of conduct, see the FAQ at
[https://www.contributor-covenant.org/faq][faq]. Translations are available at
[https://www.contributor-covenant.org/translations][translations].

[homepage]: https://www.contributor-covenant.org
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
[mozilla coc]: https://github.com/mozilla/diversity
[faq]: https://www.contributor-covenant.org/faq
[translations]: https://www.contributor-covenant.org/translations
18 changes: 10 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,4 @@ about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---


1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
Expand Down
Loading