diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-23 16:46:10 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-23 17:04:54 -0700 |
commit | d0d6aae1e56428f597f69f5c9cfb261afe671f5d (patch) | |
tree | ef1d572f2bda148ef1d13602b6b4117be8e18aa4 /.prettierrc | |
download | cps-interpreter-d0d6aae1e56428f597f69f5c9cfb261afe671f5d.tar.gz cps-interpreter-d0d6aae1e56428f597f69f5c9cfb261afe671f5d.zip |
initial parser
Diffstat (limited to '.prettierrc')
-rw-r--r-- | .prettierrc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..cd5e62a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,18 @@ +{ + "arrowParens": "avoid", + "bracketSpacing": true, + "htmlWhitespaceSensitivity": "css", + "insertPragma": false, + "jsxBracketSameLine": false, + "jsxSingleQuote": true, + "printWidth": 80, + "proseWrap": "always", + "quoteProps": "as-needed", + "requirePragma": false, + "semi": true, + "singleQuote": true, + "tabWidth": 2, + "trailingComma": "all", + "useTabs": false, + "plugins": ["prettier-plugin-pegjs"] +} |