pinchflat/.prettierrc.js
Kieran 23492961d5
[Dev] Adds .devcontainer manifest to help promote contributions (#342)
* Added a devcontainer file

* linting

* Added link to README
2024-08-07 15:38:06 -07:00

13 lines
250 B
JavaScript

module.exports = {
printWidth: 100,
tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: true,
jsxSingleQuote: false,
trailingComma: 'none',
bracketSpacing: true,
arrowParens: 'always',
requirePragma: false,
endOfLine: 'lf'
}