Files
xverse-stacks-transaction-s…/.eslintrc.json
2023-07-11 14:19:04 +08:00

27 lines
428 B
JSON

{
"root": true,
"plugins": [
"@typescript-eslint",
"import",
"prettier"
],
"extends": [
"airbnb-typescript/base",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"max-len": [
"error",
{
"code": 120
}
]
}
}