--------- Co-authored-by: DavidMaliglowka <13022280+DavidMaliglowka@users.noreply.github.com> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"files": {
|
|
"ignore": [
|
|
"build",
|
|
"coverage",
|
|
".changeset",
|
|
"tasks",
|
|
"package-lock.json",
|
|
"tests/fixture/*.json",
|
|
"dist"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"bracketSpacing": true,
|
|
"enabled": true,
|
|
"indentStyle": "tab",
|
|
"lineWidth": 80
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"arrowParentheses": "always",
|
|
"quoteStyle": "single",
|
|
"trailingCommas": "none"
|
|
}
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"include": ["apps/extension/**/*.ts", "apps/extension/**/*.tsx"],
|
|
"ignore": ["**/*", "!apps/extension/**/*"],
|
|
"rules": {
|
|
"recommended": true,
|
|
"complexity": {
|
|
"noForEach": "off",
|
|
"useOptionalChain": "off",
|
|
"useArrowFunction": "off"
|
|
},
|
|
"correctness": {
|
|
"noConstantCondition": "off",
|
|
"noUnreachable": "off"
|
|
},
|
|
"suspicious": {
|
|
"noDuplicateTestHooks": "off",
|
|
"noPrototypeBuiltins": "off"
|
|
},
|
|
"style": {
|
|
"noUselessElse": "off",
|
|
"useNodejsImportProtocol": "off",
|
|
"useNumberNamespace": "off",
|
|
"noParameterAssign": "off",
|
|
"useTemplate": "off",
|
|
"noUnusedTemplateLiteral": "off",
|
|
"noNonNullAssertion": "warn"
|
|
}
|
|
}
|
|
}
|
|
}
|