mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
49 lines
1.6 KiB
Plaintext
49 lines
1.6 KiB
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": false
|
|
},
|
|
"project": [
|
|
"./tsconfig.json",
|
|
"./test/tsconfig.json",
|
|
"./integration/tsconfig.json"
|
|
]
|
|
},
|
|
"extends": [
|
|
"oceanprotocol",
|
|
"prettier/standard",
|
|
"plugin:prettier/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint"
|
|
],
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
"rules": {
|
|
"@typescript-eslint/member-delimiter-style": [
|
|
"error",
|
|
{ "multiline": { "delimiter": "none" } }
|
|
],
|
|
"@typescript-eslint/ban-ts-ignore": "off",
|
|
"@typescript-eslint/indent": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-inferrable-types": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/no-object-literal-type-assertion": "off",
|
|
"@typescript-eslint/no-parameter-properties": "off",
|
|
"no-empty": ["error", { "allowEmptyCatch": true }],
|
|
"prefer-destructuring": ["warn"],
|
|
"no-dupe-class-members": ["warn"],
|
|
"no-useless-constructor": ["warn"]
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"mocha": true
|
|
}
|
|
}
|