mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-06 11:10:27 +00:00
The tsserver lsp doesn't seem to work well with .editorconfig. Using prettierrc will allow formatting to work correctly with editor plugins This also updates editorconfig to work well with json Change-type: patch
6 lines
135 B
JavaScript
6 lines
135 B
JavaScript
const fs = require('fs');
|
|
|
|
module.exports = JSON.parse(
|
|
fs.readFileSync('./node_modules/@balena/lint/config/.prettierrc', 'utf8'),
|
|
);
|