Added circleci config and eslint
Showing
.circleci/config.yml
0 → 100644
.eslintrc.json
0 → 100644
This diff is collapsed.
... | ... | @@ -7,11 +7,12 @@ |
"remixd": "./bin/remixd" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"test": "echo \"Error: no test specified\"", | ||
"start": "./bin/remixd", | ||
"npip": "npip", | ||
"install-python-deps": "npip install", | ||
"prepublish": "npm run install-python-deps" | ||
"prepublish": "npm run install-python-deps", | ||
"lint": "eslint ./src" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
... | ... | @@ -46,5 +47,13 @@ |
"dependencies": { | ||
"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