Skip to content

Commit

Permalink
feat: react/cloudscape rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
its-felix committed Jan 12, 2024
1 parent 0fabd65 commit 8af39e9
Show file tree
Hide file tree
Showing 234 changed files with 13,150 additions and 16,791 deletions.
37 changes: 37 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.eslint.json"
},
"extends": [
"eslint:recommended",
"airbnb-base",
"airbnb-typescript-base"
],
"plugins": [
"eslint-plugin-react",
"eslint-plugin-react-hooks"
],
"rules": {
"import/prefer-default-export": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/lines-between-class-members": 0,
"@typescript-eslint/no-use-before-define": 0,
"typescript-sort-keys/string-enum": 0,
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }],
"object-shorthand": 0,
"no-restricted-syntax": 0,
"typescript-sort-keys/interface": 0,
"no-underscore-dangle": 0,
"max-classes-per-file": 0,
"no-lonely-if": 0,
"no-plusplus": 0,
"max-len": 0,
"no-trailing-spaces": 0,
"no-bitwise": 0
},
"ignorePatterns": ["vite.config.ts"]
}
2 changes: 1 addition & 1 deletion .github/actions/build_and_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
- name: 'Setup node'
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- name: 'Install npm dependencies'
working-directory: ${{ inputs.working-directory }}
run: 'npm install'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node/
**/node_modules/

**/dist/
**/out/

**/.angular/cache
/.sass-cache
Expand Down
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"jsxSingleQuote": true,
"tabWidth": 2
}
144 changes: 0 additions & 144 deletions angular.json

This file was deleted.

44 changes: 0 additions & 44 deletions karma.conf.js

This file was deleted.

Loading

0 comments on commit 8af39e9

Please sign in to comment.