Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: some more future

+72 -1
+1 -1
.oxlintrc.json
··· 3 3 "env": { 4 4 "browser": true 5 5 }, 6 - "ignorePatterns": ["dist", "node_modules"] 6 + "ignorePatterns": ["dist", "node_modules", "target"] 7 7 }
+71
.zed/settings.json
··· 1 + { 2 + "formatter": { 3 + "language_server": { 4 + "name": "oxfmt" 5 + } 6 + }, 7 + "languages": { 8 + "Rust": { 9 + "formatter": "language_server" 10 + }, 11 + "TypeScript": { 12 + "formatter": [ 13 + { 14 + "language_server": { 15 + "name": "oxfmt" 16 + } 17 + }, 18 + { 19 + "code_action": "source.fixAll.oxc" 20 + } 21 + ] 22 + }, 23 + "JavaScript": { 24 + "formatter": [ 25 + { 26 + "language_server": { 27 + "name": "oxfmt" 28 + } 29 + }, 30 + { 31 + "code_action": "source.fixAll.oxc" 32 + } 33 + ] 34 + } 35 + }, 36 + "lsp": { 37 + "oxlint": { 38 + "initialization_options": { 39 + "settings": { 40 + "disableNestedConfig": false, 41 + "fixKind": "safe_fix", 42 + "run": "onType", 43 + "typeAware": true, 44 + "unusedDisableDirectives": "deny" 45 + } 46 + } 47 + }, 48 + "oxfmt": { 49 + "initialization_options": { 50 + "settings": { 51 + "configPath": null, 52 + "flags": {}, 53 + "fmt.configPath": null, 54 + "fmt.experimental": true, 55 + "run": "onSave", 56 + "typeAware": false, 57 + "unusedDisableDirectives": false 58 + } 59 + } 60 + }, 61 + "vscode-css-language-server": { 62 + "settings": { 63 + "css": { 64 + "lint": { 65 + "unknownAtRules": "ignore" 66 + } 67 + } 68 + } 69 + } 70 + } 71 + }