A field guide to the faces your coding agents make — kaomoji stats mined from Claude Code & Codex session logs.
1{
2 "$schema": "./node_modules/oxfmt/configuration_schema.json",
3 "useTabs": false,
4 "tabWidth": 2,
5 "printWidth": 80,
6 "singleQuote": true,
7 "jsxSingleQuote": false,
8 "quoteProps": "as-needed",
9 "trailingComma": "all",
10 "semi": true,
11 "arrowParens": "always",
12 "bracketSameLine": false,
13 "bracketSpacing": true,
14 "sortPackageJson": false,
15 "ignorePatterns": [".*/**", "*.json", "rollbar.js", "src/data/**", "**/*.md"],
16 "sortImports": {
17 "groups": [
18 "side_effect_style",
19 "side_effect",
20 "polyfills",
21 "builtin",
22 "external",
23 "assets-imports",
24 "parent",
25 ["sibling", "index"]
26 ],
27 "customGroups": [
28 { "groupName": "polyfills", "elementNamePattern": ["./polyfills"] },
29 { "groupName": "assets-imports", "elementNamePattern": ["**/assets/**"] }
30 ]
31 }
32}