Skip to content

Commit

Permalink
Merge branch 'beta' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed May 24, 2024
2 parents ad285fb + a9e916e commit 183bcad
Show file tree
Hide file tree
Showing 5 changed files with 1,659 additions and 1,660 deletions.
98 changes: 0 additions & 98 deletions .eslintrc

This file was deleted.

68 changes: 68 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
const finalConfig = {
env: {
es2024: true
},
"extends": ["@xylabs"],
parser: '@typescript-eslint/parser',
parserOptions: { ecmaVersion: 'latest', project: './tsconfig.json', sourceType: 'module', tsconfigRootDir: null },
"root": true,
"ignorePatterns": [
"dist",
"node_modules",
"docs",
"coverage",
"docker",
"nftData",
"testData.json",
"*.stories.*",
"swagger.json",
".yarn",
".*",
"xy.config.ts",
"jestSetup",
"jest.config.ts"
],
"rules": {
"@typescript-eslint/explicit-member-accessibility": ["warn", { "accessibility": "no-public" }],
"no-restricted-imports": [
"warn",
{
"paths": [
"@xyo-network/bridge",
"@xyo-network/core",
"@xyo-network/module",
"@xyo-network/modules",
"@xyo-network/node",
"@xyo-network/sdk",
"@xyo-network/plugins",
"@xyo-network/protocol",
"@xyo-network/witness",
"react-player",
"filepond",
"aos",
"react-icons",
".",
"..",
"../..",
"../../..",
"../../../..",
"../../../../..",
"../../../../../..",
"../../../../../../.."
]
}
],
"import/no-internal-modules": [
"warn", {
"allow": [
"source-map-support/*",
"lodash/*",
"aws-sdk/**/*",
"types/*"
]
}
]
}
}

module.exports = finalConfig
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
"author": "Arie Trouw",
"license": "LGPL-3.0",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.580.0",
"@xylabs/assert": "^3.3.3",
"@aws-sdk/client-secrets-manager": "^3.583.0",
"@xylabs/assert": "^3.5.1",
"@xylabs/sdk-api-express-ecs": "^2.0.4",
"@xyo-network/automation-witness-server": "^2.88.3",
"@xyo-network/automation-witness-server": "^2.88.6",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"ethers": "6.12.1",
Expand All @@ -52,8 +52,8 @@
"winston-transport": "^4.7.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@xylabs/eslint-config": "^3.10.4",
Expand Down
1 change: 0 additions & 1 deletion src/spec/test.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

describe('api-automation-witness-nodejs', () => {
it('has a test', () => {
expect(true).toBeTruthy()
Expand Down
Loading

0 comments on commit 183bcad

Please sign in to comment.