mirror of
https://github.com/alexgo-io/xverse-stacks-transaction-sponsor.git
synced 2026-01-12 08:43:39 +08:00
27 lines
428 B
JSON
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
|
|
}
|
|
]
|
|
}
|
|
}
|