editing page works but making new pages was still wonky, so that was fixed and now page creation works fine made some minor tweaks to prettier config for css formatting
36 lines
980 B
Text
36 lines
980 B
Text
{
|
|
"overrides": [
|
|
{
|
|
"files": ".prettierrc",
|
|
"options": { "parser": "json" }
|
|
},
|
|
{
|
|
"files": "*.css",
|
|
"options": {
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": false,
|
|
"printWidth": 90
|
|
}
|
|
},
|
|
{
|
|
"files": "*.js",
|
|
"options": {
|
|
"arrowParens": "avoid",
|
|
"bracketSpacing": true,
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"insertPragma": false,
|
|
"bracketSameLine": false,
|
|
"jsxSingleQuote": true,
|
|
"proseWrap": "preserve",
|
|
"requirePragma": false,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"useTabs": true,
|
|
"tabWidth": 4,
|
|
"printWidth": 90
|
|
}
|
|
}
|
|
]
|
|
}
|