jsonuri
Version:
Use URI path to get or set data
28 lines (27 loc) • 589 B
JSON
{
"env": {
"node": true
},
"extends": [
"standard-with-typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"eslint-plugin-prefer-arrow",
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-floating-promises": "off",
"one-var": [
"off",
"never"
],
"prefer-arrow/prefer-arrow-functions": "error"
}
}