Added circleci config and eslint
Showing
.circleci/config.yml
0 → 100644
.eslintrc.json
0 → 100644
This diff is collapsed.
... | @@ -7,11 +7,12 @@ | ... | @@ -7,11 +7,12 @@ |
"remixd": "./bin/remixd" | "remixd": "./bin/remixd" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | "test": "echo \"Error: no test specified\"", | ||
"start": "./bin/remixd", | "start": "./bin/remixd", | ||
"npip": "npip", | "npip": "npip", | ||
"install-python-deps": "npip install", | "install-python-deps": "npip install", | ||
"prepublish": "npm run install-python-deps" | "prepublish": "npm run install-python-deps", | ||
"lint": "eslint ./src" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -46,5 +47,13 @@ | ... | @@ -46,5 +47,13 @@ |
"dependencies": { | "dependencies": { | ||
"vyper": ">=0.1.0b3" | "vyper": ">=0.1.0b3" | ||
} | } | ||
}, | |||
"devDependencies": { | |||
"eslint": "6.8.0", | |||
"eslint-config-standard": "14.1.1", | |||
"eslint-plugin-import": "2.20.2", | |||
"eslint-plugin-node": "11.1.0", | |||
"eslint-plugin-promise": "4.2.1", | |||
"eslint-plugin-standard": "4.0.1" | |||
} | } | ||
} | } |
Please
register
or
sign in
to comment