Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hanagertrudeKim committed Mar 3, 2024
2 parents 5a4d31a + c6d2687 commit af08736
Show file tree
Hide file tree
Showing 1,647 changed files with 61,521 additions and 9,690 deletions.
28 changes: 27 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,33 @@
"@typescript-eslint"
],
"rules": {
"react/react-in-jsx-scope": "off"
"no-restricted-imports": [
"error",
{
"patterns": [
{
"group": ["../*"],
"message": "Usage of relative parent imports is not allowed."
}
]
}
],
"react/react-in-jsx-scope": "off",
"max-classes-per-file": "off",
"class-methods-use-this": "off",
"react/jsx-props-no-spreading": "off",
"jsx-a11y/label-has-associated-control": ["error", {
"required": {
"some": ["nesting", "id"]
}
}],
"jsx-a11y/label-has-for": ["error", {
"required": {
"some": ["nesting", "id"]
}
}],
"linebreak-style":"off",
"import/prefer-default-export": "off"
},
"settings": {
"import/resolver": {
Expand Down
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ChoiWonBeen @daepan @kimeodml
28 changes: 28 additions & 0 deletions .github/workflows/TEST_CHECK.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: test_check

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

jobs:
Jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install package
run: yarn
- name: Check lint
run: CI=true yarn test
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# .gitignore
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# dependencies
/node_modules
/.pnp
Expand All @@ -19,6 +28,9 @@
.env.test.local
.env.production.local

.prettierrc
npm-debug.log*
yarn-debug.log*
yarn-error.log*

.idea/*
30,700 changes: 30,700 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit af08736

Please sign in to comment.