fixed linting for vyper and walletconnect

pull/4771/head
lianahus 7 months ago
parent e0a2012a78
commit dde16c2bd4
  1. 4
      apps/vyper/project.json
  2. 2
      apps/vyper/src/app/utils/types.ts
  3. 4
      apps/walletconnect/project.json

@ -42,8 +42,8 @@
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"], "outputs": ["{options.outputFile}"],
"options": { "options": {
"lintFilePatterns": ["libs/vyper/**/*.ts"], "lintFilePatterns": ["apps/vyper/**/*.ts"],
"eslintConfig": "libs/vyper/.eslintrc" "eslintConfig": "apps/vyper/.eslintrc"
} }
}, },
"serve": { "serve": {

@ -18,7 +18,6 @@ export interface VyperCompilationError {
message: string message: string
} }
export type VyperCompilationResultType = { export type VyperCompilationResultType = {
buildDependencies: any buildDependencies: any
compilers: [ compilers: [
@ -448,7 +447,6 @@ deployments: {
[contractName: string]: ContractInstanceObject [contractName: string]: ContractInstanceObject
} }
} }
export type CompilerInformationObject = { export type CompilerInformationObject = {

@ -39,8 +39,8 @@
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"], "outputs": ["{options.outputFile}"],
"options": { "options": {
"lintFilePatterns": ["libs/walletconnect/**/*.ts"], "lintFilePatterns": ["apps/walletconnect/**/*.ts"],
"eslintConfig": "libs/walletconnect/.eslintrc" "eslintConfig": "apps/walletconnect/.eslintrc"
} }
}, },
"serve": { "serve": {

Loading…
Cancel
Save