lynxkite / biome.json
JMLizano's picture
Single import box for multiple file formats (#80)
10c9dc3 unverified
raw
history blame contribute delete
600 Bytes
{
"formatter": {
"ignore": ["**/node_modules/**", "**/dist/**"],
"indentStyle": "space"
},
"linter": {
"ignore": ["**/node_modules/**", "**/dist/**"],
"rules": {
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"a11y": {
"useKeyWithClickEvents": "off",
"useValidAnchor": "off",
"useButtonType": "off",
"noNoninteractiveTabindex": "off"
}
}
}
}