Files
certd/packages/core/pipeline/.eslintrc
T

22 lines
487 B
Plaintext
Raw Normal View History

2022-10-26 09:02:47 +08:00
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier"
],
"env": {
"mocha": true
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-unused-expressions": "off",
"max-len": [0, 160, 2, { "ignoreUrls": true }]
}
}