lynxkite / biome.json
darabos's picture
Set up Biome for JS linting/formatting.
d460634
raw
history blame
525 Bytes
{
"formatter": {
"ignore": ["**/node_modules/**", "**/dist/**"],
"indentStyle": "space"
},
"linter": {
"ignore": ["**/node_modules/**", "**/dist/**"],
"rules": {
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"a11y": {
"useKeyWithClickEvents": "off",
"useValidAnchor": "off",
"useButtonType": "off",
"noNoninteractiveTabindex": "off"
}
}
}
}