lynxkite / biome.json
darabos's picture
Open code files from directory + related stuff.
2e10db6
raw
history blame
707 Bytes
{
"files": {
"ignore": ["**/*.lynxkite.json"]
},
"formatter": {
"ignore": ["**/node_modules/**", "**/dist/**"],
"lineWidth": 100,
"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",
"noAutofocus": "off",
"noNoninteractiveTabindex": "off"
}
}
}
}