[Dev] Adds .devcontainer manifest to help promote contributions (#342)

* Added a devcontainer file

* linting

* Added link to README
This commit is contained in:
Kieran 2024-08-07 15:38:06 -07:00 committed by GitHub
parent 2326775d78
commit 23492961d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 16 additions and 5 deletions

13
.prettierrc.js Normal file
View file

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