testweave-sdk
Version:
This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.
32 lines (31 loc) • 772 B
JSON
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-console": "off",
"linebreak-style": "off",
"indent": ["error", 2],
"quotes": [
"error",
"single",
{ "allowTemplateLiterals": true }
],
"keyword-spacing": ["error", { "before": true }],
"space-before-blocks": ["error"]
}
}