scroll/deno.jsonc

19 lines
310 B
Plaintext
Raw Normal View History

{
"lint": {
"include": ["src/"],
"rules": {
2023-11-03 11:59:58 -04:00
"tags": ["recommended"],
"exclude": ["no-explicit-any", "no-inferrable-types"]
}
},
"fmt": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
2023-11-02 13:06:48 -04:00
"singleQuote": true
},
2024-07-25 11:47:44 -04:00
"nodeModulesDir": true,
"exclude": ["src/bun/"]
2023-11-02 13:06:48 -04:00
}