mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Restore ESLint and Prettier autoformatting * Fix formatting and lints in web files * Hacky fix to eslint crash * Fix remaining lints * Add lint-fix script --------- Co-authored-by: 0hypercube <0hypercube@gmail.com>
23 lines
321 B
Plaintext
23 lines
321 B
Plaintext
{
|
|
"singleQuote": false,
|
|
"useTabs": true,
|
|
"tabWidth": 4,
|
|
"printWidth": 200,
|
|
"plugins": ["prettier-plugin-svelte"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.yml", "*.yaml"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"tabWidth": 2
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.svelte"],
|
|
"options": {
|
|
"parser": "svelte"
|
|
}
|
|
}
|
|
]
|
|
}
|