Skip to content

Commit

Permalink
added commit
Browse files Browse the repository at this point in the history
  • Loading branch information
“raj committed Mar 8, 2024
1 parent cbd246d commit cd445ca
Show file tree
Hide file tree
Showing 274 changed files with 75,130 additions and 0 deletions.
174 changes: 174 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
{
"projectName": "studio",
"projectOwner": "asyncapi",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"imageSize": 100,
"commit": false,
"commitConvention": "none",
"contributors": [
{
"login": "magicmatatjahu",
"name": "Maciej Urbańczyk",
"avatar_url": "https://avatars.githubusercontent.com/u/20404945?v=4",
"profile": "https://github.com/magicmatatjahu",
"contributions": [
"maintenance",
"code",
"doc",
"bug",
"ideas",
"review",
"design",
"test",
"infra",
"mentoring"
]
},
{
"login": "fmvilas",
"name": "Fran Méndez",
"avatar_url": "https://avatars.githubusercontent.com/u/242119?v=4",
"profile": "http://www.fmvilas.com/",
"contributions": [
"maintenance",
"code",
"doc",
"bug",
"ideas",
"review",
"design",
"test",
"infra",
"mentoring"
]
},
{
"login": "boyney123",
"name": "David Boyne",
"avatar_url": "https://avatars.githubusercontent.com/u/3268013?v=4",
"profile": "https://boyney.io/",
"contributions": [
"maintenance",
"code",
"doc",
"bug",
"ideas",
"review",
"design",
"test",
"mentoring"
]
},
{
"login": "mcturco",
"name": "Missy Turco",
"avatar_url": "https://avatars.githubusercontent.com/u/60163079?v=4",
"profile": "https://missyturco.com/",
"contributions": [
"maintenance",
"code",
"ideas",
"review",
"design",
"mentoring"
]
},
{
"login": "fgreinacher",
"name": "Florian Greinacher",
"avatar_url": "https://avatars.githubusercontent.com/u/1540469?v=4",
"profile": "https://florian.greinacher.de/",
"contributions": [
"code",
"infra",
"bug",
"doc"
]
},
{
"login": "ritik307",
"name": "Ritik Rawal",
"avatar_url": "https://avatars.githubusercontent.com/u/22374829?v=4",
"profile": "https://ritik307.github.io/portfolio/",
"contributions": [
"code"
]
},
{
"login": "Samridhi-98",
"name": "Samriddhi",
"avatar_url": "https://avatars.githubusercontent.com/u/54466041?v=4",
"profile": "https://samridhi-98.github.io/Portfolio",
"contributions": [
"code"
]
},
{
"login": "pawlean",
"name": "Pauline P. Narvas",
"avatar_url": "https://avatars.githubusercontent.com/u/17087373?v=4",
"profile": "https://paulinenarvas.com/",
"contributions": [
"code",
"infra",
"doc"
]
},
{
"login": "jonaslagoni",
"name": "Jonas Lagoni",
"avatar_url": "https://avatars.githubusercontent.com/u/13396189?v=4",
"profile": "https://linkedin.com/in/jonaslagoni/",
"contributions": [
"ideas",
"question",
"review"
]
},
{
"login": "smoya",
"name": "Sergio Moya",
"avatar_url": "https://avatars.githubusercontent.com/u/1083296?v=4",
"profile": "https://github.com/smoya",
"contributions": [
"ideas",
"question"
]
},
{
"login": "BOLT04",
"name": "David Pereira",
"avatar_url": "https://avatars.githubusercontent.com/u/18630253?v=4",
"profile": "https://bolt04.github.io/react-ultimate-resume/",
"contributions": [
"ideas",
"question"
]
},
{
"login": "nawed2611",
"name": "Nawed Ali",
"avatar_url": "https://avatars.githubusercontent.com/u/83456083?v=4",
"profile": "https://nawedali.tech",
"contributions": [
"code",
"bug"
]
},
{
"login": "aeworxet",
"name": "Viacheslav Turovskyi",
"avatar_url": "https://avatars.githubusercontent.com/u/16149591?v=4",
"profile": "https://github.com/aeworxet",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
"skipCi": true
}
9 changes: 9 additions & 0 deletions .asyncapi-tool.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
title: AsyncAPI Studio
links:
websiteUrl: https://studio.asyncapi.com
filters:
technology:
- React JS
- TypeScript
categories:
- editor
15 changes: 15 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": ["design-system"],
"privatePackages": {
"version": true,
"tag": true
}
}
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.git/
.github/
node_modules/
build/
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
public
docs
lib
build
dist
176 changes: 176 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
{
"env": {
"es6": true,
"browser": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "sonarjs", "security", "react"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:sonarjs/recommended",
"plugin:react/recommended",
"plugin:security/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"strict": 0,
"no-underscore-dangle": 0,
"no-mixed-requires": 0,
"no-process-exit": 0,
"no-warning-comments": 0,
"curly": 0,
"no-multi-spaces": 0,
"no-alert": 0,
"consistent-return": 0,
"consistent-this": [0, "self"],
"func-style": 0,
"max-nested-callbacks": 0,
"camelcase": 0,
"no-debugger": 1,
"no-empty": 1,
"no-invalid-regexp": 1,
"no-unused-expressions": 0,
"no-native-reassign": 1,
"no-fallthrough": 1,
"sonarjs/cognitive-complexity": 1,
"eqeqeq": 2,
"no-undef": 2,
"no-dupe-keys": 2,
"no-empty-character-class": 2,
"no-self-compare": 2,
"valid-typeof": 2,
"no-unused-vars": [
2,
{
"args": "none"
}
],
"handle-callback-err": 2,
"no-shadow-restricted-names": 2,
"no-new-require": 2,
"no-mixed-spaces-and-tabs": 2,
"block-scoped-var": 2,
"no-else-return": 2,
"no-throw-literal": 2,
"no-void": 2,
"radix": 2,
"wrap-iife": [2, "outside"],
"no-shadow": 0,
"no-path-concat": 2,
"valid-jsdoc": [
0,
{
"requireReturn": false,
"requireParamDescription": false,
"requireReturnDescription": false
}
],
"no-spaced-func": 2,
"semi-spacing": 2,
"quotes": [2, "single"],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"indent": [2, 2],
"no-lonely-if": 2,
"no-floating-decimal": 2,
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"comma-style": [2, "last"],
"no-multiple-empty-lines": [
2,
{
"max": 1
}
],
"no-nested-ternary": 2,
"operator-assignment": [2, "always"],
"padded-blocks": [2, "never"],
"quote-props": [2, "as-needed"],
"keyword-spacing": [
2,
{
"before": true,
"after": true,
"overrides": {}
}
],
"space-before-blocks": [2, "always"],
"array-bracket-spacing": [2, "never"],
"computed-property-spacing": [2, "never"],
"space-in-parens": [2, "never"],
"space-unary-ops": [
2,
{
"words": true,
"nonwords": false
}
],
"wrap-regex": 2,
"linebreak-style": 0,
"arrow-spacing": [
2,
{
"before": true,
"after": true
}
],
"no-class-assign": 2,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-this-before-super": 2,
"no-var": 2,
"object-shorthand": [2, "always"],
"prefer-arrow-callback": 2,
"prefer-const": 2,
"prefer-spread": 2,
"prefer-template": 2,
"react/prop-types": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-empty-interface": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-this-alias": "off",
"security/detect-object-injection": "off"
},
"overrides": [
{
"files": ["*.spec.ts", "*.spec.tsx", "*.test.ts", "*.test.tsx"],
"rules": {
"no-undef": "off",
"no-console": "off",
"prefer-arrow-callback": 0,
"sonarjs/no-duplicate-string": 0,
"security/detect-object-injection": 0
}
}
]
}
Loading

0 comments on commit cd445ca

Please sign in to comment.