Files
certd/packages/ui/certd-server/.eslintrc.json
T

13 lines
283 B
JSON
Raw Normal View History

2023-01-29 13:44:19 +08:00
{
"extends": "./node_modules/mwts/",
2024-07-15 00:30:33 +08:00
"ignorePatterns": ["node_modules", "dist", "test", "typings"],
2023-01-29 13:44:19 +08:00
"env": {
2024-07-15 00:30:33 +08:00
"mocha": true
2023-01-29 13:44:19 +08:00
},
"rules": {
2024-07-15 00:30:33 +08:00
"max-len": ["error", 160],
2023-01-29 13:44:19 +08:00
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}