Commit 6398bf0a authored by aniket-engg's avatar aniket-engg

linting details and implicit dependencies

parent 2971f740
...@@ -19,32 +19,58 @@ ...@@ -19,32 +19,58 @@
} }
}, },
"projects": { "projects": {
"remix-ide": { "remix-astwalker": {
"tags": [] "tags": []
}, },
"remix-analyzer": { "remix-lib": {
"tags": [] "tags": []
}, },
"remix-astwalker": { "remix-analyzer": {
"tags": [] "tags": [],
"implicitDependencies": [
"remix-astwalker",
"remix-lib"
]
}, },
"remix-debug": { "remix-debug": {
"tags": [] "tags": [],
}, "implicitDependencies": [
"remix-lib": { "remix-lib"
"tags": [] ]
}, },
"remix-simulator": { "remix-simulator": {
"tags": [] "tags": [],
"implicitDependencies": [
"remix-lib"
]
}, },
"remix-solidity": { "remix-solidity": {
"tags": [] "tags": [],
"implicitDependencies": [
"remix-lib"
]
}, },
"remix-tests": { "remix-tests": {
"tags": [] "tags": [],
"implicitDependencies": [
"remix-lib",
"remix-simulator",
"remix-solidity"
]
}, },
"remix-url-resolver": { "remix-url-resolver": {
"tags": [] "tags": []
},
"remix-ide": {
"tags": [],
"implicitDependencies": [
"remix-analyzer",
"remix-debug",
"remix-lib",
"remix-simulator",
"remix-solidity",
"remix-tests"
]
} }
} }
} }
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
"builder": "@nrwl/linter:lint", "builder": "@nrwl/linter:lint",
"options": { "options": {
"linter": "eslint", "linter": "eslint",
"config": "apps/remix-ide/.eslintrc.json", "config": "apps/remix-ide/.eslintrc",
"files": [ "files": [
"apps/remix-ide/**/*.js" "apps/remix-ide/**/*.js"
], ],
...@@ -73,7 +73,17 @@ ...@@ -73,7 +73,17 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [
"libs/remix-analyzer/tsconfig.lib.json"
],
"exclude": ["**/node_modules/**", "!libs/remix-analyzer/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -93,7 +103,17 @@ ...@@ -93,7 +103,17 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [
"libs/remix-astwalker/tsconfig.lib.json"
],
"exclude": ["**/node_modules/**", "!libs/remix-astwalker/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -113,7 +133,15 @@ ...@@ -113,7 +133,15 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [],
"exclude": ["**/node_modules/**", "!libs/remix-debug/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -133,7 +161,15 @@ ...@@ -133,7 +161,15 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [],
"exclude": ["**/node_modules/**", "!libs/remix-lib/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -153,7 +189,15 @@ ...@@ -153,7 +189,15 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [],
"exclude": ["**/node_modules/**", "!libs/remix-simulator/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -173,7 +217,17 @@ ...@@ -173,7 +217,17 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [
"libs/remix-solidity/tsconfig.lib.json"
],
"exclude": ["**/node_modules/**", "!libs/remix-solidity/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -193,7 +247,17 @@ ...@@ -193,7 +247,17 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [
"libs/remix-tests/tsconfig.lib.json"
],
"exclude": ["**/node_modules/**", "!libs/remix-tests/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
...@@ -213,7 +277,17 @@ ...@@ -213,7 +277,17 @@
"projectType": "library", "projectType": "library",
"schematics": {}, "schematics": {},
"architect": { "architect": {
"lint": {}, "lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"config": "apps/remix-ide/.eslintrc",
"tsConfig": [
"libs/remix-url-resolver/tsconfig.lib.json"
],
"exclude": ["**/node_modules/**", "!libs/remix-url-resolver/**"]
}
},
"test": {}, "test": {},
"build": { "build": {
"builder": "@nrwl/node:package", "builder": "@nrwl/node:package",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment