cryptomus-api
Version:
Библиотека для работы с платежной системой Cryptomus
33 lines (32 loc) • 912 B
JSON
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-empty-function": "off",
"no-var": "off",
"@typescript-eslint/no-unused-vars": ["off"],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"useTabs": true,
"semi": true,
"trailingComma": "all",
"bracketSpacing": true,
"printWidth": 100,
"endOfLine": "auto"
}
]
}
}