added raegets for lint to plugins

cleanup
pull/4771/head
lianahus 7 months ago
parent 6c3fa0e221
commit 8a7298b014
  1. 8
      apps/circuit-compiler/project.json
  2. 3
      apps/debugger/.eslintrc
  3. 8
      apps/debugger/project.json
  4. 3
      apps/doc-gen/.eslintrc
  5. 8
      apps/doc-gen/project.json
  6. 3
      apps/doc-viewer/.eslintrc
  7. 8
      apps/doc-viewer/project.json
  8. 3
      apps/etherscan/.eslintrc
  9. 8
      apps/etherscan/project.json
  10. 3
      apps/learneth/.eslintrc
  11. 8
      apps/learneth/project.json
  12. 3
      apps/solhint/.eslintrc
  13. 8
      apps/solhint/project.json
  14. 3
      apps/solidity-compiler/.eslintrc
  15. 8
      apps/solidity-compiler/project.json
  16. 8
      apps/vyper/project.json
  17. 3
      apps/walletconnect/.eslintrc
  18. 8
      apps/walletconnect/project.json

@ -35,6 +35,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/circuit-compiler/**/*.ts"],
"eslintConfig": "apps/circuit-compiler/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -40,6 +40,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/debugger/**/*.ts"],
"eslintConfig": "apps/debugger/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -38,6 +38,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/doc-gen/**/*.ts"],
"eslintConfig": "apps/doc-gen/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -38,6 +38,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/doc-viewer/**/*.ts"],
"eslintConfig": "apps/doc-viewer/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -38,6 +38,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/etherscan/**/*.ts"],
"eslintConfig": "apps/etherscan/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -35,6 +35,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/learneth/**/*.ts"],
"eslintConfig": "apps/learneth/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -47,6 +47,14 @@
"parallel": false
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/solhint/**/*.ts"],
"eslintConfig": "libs/solhint/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -41,6 +41,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/solidity-compiler/**/*.ts"],
"eslintConfig": "libs/solidity-compiler/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -38,6 +38,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/vyper/**/*.ts"],
"eslintConfig": "libs/vyper/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

@ -0,0 +1,3 @@
{
"extends": "../../.eslintrc.json",
}

@ -35,6 +35,14 @@
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/walletconnect/**/*.ts"],
"eslintConfig": "libs/walletconnect/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",

Loading…
Cancel
Save