Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
845b93a8
Commit
845b93a8
authored
Jun 08, 2020
by
aniket-engg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linting done for libs
parent
42cad01f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
58 additions
and
45 deletions
+58
-45
package.json
libs/remix-astwalker/package.json
+2
-0
package.json
libs/remix-lib/package.json
+1
-0
package.json
libs/remix-simulator/package.json
+1
-0
package.json
libs/remix-solidity/package.json
+1
-0
package.json
libs/remix-tests/package.json
+1
-0
package.json
package.json
+1
-0
workspace.json
workspace.json
+51
-45
No files found.
libs/remix-astwalker/package.json
View file @
845b93a8
...
...
@@ -5,6 +5,7 @@
"main"
:
"dist/index.js"
,
"scripts"
:
{
"build"
:
"tsc"
,
"lint"
:
"standard"
,
"test"
:
"nyc --reporter=lcov --require ts-node/register tape ./tests/*.ts | tap-spec; nyc report ---reporter=text"
,
"prepublish"
:
"npm run build"
},
...
...
@@ -35,6 +36,7 @@
"@types/tape"
:
"^4.2.33"
,
"nyc"
:
"^13.3.0"
,
"remix-lib"
:
"0.4.29"
,
"standard"
:
"^14.3.4"
,
"tape"
:
"^4.10.1"
,
"ts-node"
:
"^8.0.3"
,
"typescript"
:
"^3.4.3"
...
...
libs/remix-lib/package.json
View file @
845b93a8
...
...
@@ -37,6 +37,7 @@
"tape"
:
"^4.6.0"
},
"scripts"
:
{
"lint"
:
"standard"
,
"test"
:
"standard && tape ./test/tests.js"
},
"repository"
:
{
...
...
libs/remix-simulator/package.json
View file @
845b93a8
...
...
@@ -43,6 +43,7 @@
"standard"
:
"^10.0.3"
},
"scripts"
:
{
"lint"
:
"standard"
,
"test"
:
"standard && mocha test/"
},
"bin"
:
{
...
...
libs/remix-solidity/package.json
View file @
845b93a8
...
...
@@ -36,6 +36,7 @@
},
"scripts"
:
{
"build"
:
"tsc"
,
"lint"
:
"standard"
,
"test"
:
"tsc && tape ./test/tests.js"
},
"standard"
:
{
...
...
libs/remix-tests/package.json
View file @
845b93a8
...
...
@@ -19,6 +19,7 @@
},
"scripts"
:
{
"build"
:
"tsc"
,
"lint"
:
"standard"
,
"test"
:
"tsc && mocha --require ts-node/register tests/*.ts -t 300000"
,
"prepublish"
:
"npm run build"
},
...
...
package.json
View file @
845b93a8
...
...
@@ -27,6 +27,7 @@
"build"
:
"nx build"
,
"test"
:
"nx test"
,
"lint"
:
"nx lint"
,
"lint:libs"
:
"nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver"
,
"e2e"
:
"nx e2e"
,
"affected:apps"
:
"nx affected:apps"
,
"affected:libs"
:
"nx affected:libs"
,
...
...
workspace.json
View file @
845b93a8
...
...
@@ -74,14 +74,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"
linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[
"libs/remix-analyzer/tsconfig.lib.json"
"
commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"
exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-analyzer/**"
]
"
cwd"
:
"libs/remix-analyzer"
}
},
"test"
:
{},
...
...
@@ -104,14 +104,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"
linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[
"libs/remix-astwalker/tsconfig.lib.json"
"
commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"
exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-astwalker/**"
]
"
cwd"
:
"libs/remix-astwalker"
}
},
"test"
:
{},
...
...
@@ -134,12 +134,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-debug/**"
]
"commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"cwd"
:
"libs/remix-debug"
}
},
"test"
:
{},
...
...
@@ -162,12 +164,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-lib/**"
]
"commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"cwd"
:
"libs/remix-lib"
}
},
"test"
:
{},
...
...
@@ -190,12 +194,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-simulator/**"
]
"commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"cwd"
:
"libs/remix-simulator"
}
},
"test"
:
{},
...
...
@@ -218,14 +224,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"
linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[
"libs/remix-solidity/tsconfig.lib.json"
"
commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"
exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-solidity/**"
]
"
cwd"
:
"libs/remix-solidity"
}
},
"test"
:
{},
...
...
@@ -248,14 +254,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"
linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[
"libs/remix-tests/tsconfig.lib.json"
"
commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"
exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-tests/**"
]
"
cwd"
:
"libs/remix-tests"
}
},
"test"
:
{},
...
...
@@ -278,14 +284,14 @@
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/
linter:lint
"
,
"builder"
:
"@nrwl/
workspace:run-commands
"
,
"options"
:
{
"
linter"
:
"eslint"
,
"config"
:
"apps/remix-ide/.eslintrc"
,
"tsConfig"
:
[
"libs/remix-url-resolver/tsconfig.lib.json"
"
commands"
:
[
{
"command"
:
"./../../node_modules/.bin/npm-run-all lint"
}
],
"
exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-url-resolver/**"
]
"
cwd"
:
"libs/remix-url-resolver"
}
},
"test"
:
{},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment