{"_id":"prettier-basic","name":"prettier-basic","dist-tags":{"latest":"1.0.0"},"versions":{"1.0.0":{"name":"prettier-basic","version":"1.0.0","description":"A simple prettier configuration for formatting code","main":".prettierrc.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/jaretburkett/prettier-basic.git"},"keywords":["prettier","format","config","standard","basic"],"author":{"name":"Jaret Burkett","email":"jaretburkett@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/jaretburkett/prettier-basic/issues"},"homepage":"https://github.com/jaretburkett/prettier-basic#readme","gitHead":"24effcde30c79f6e5c02ced12be2273b2cca8ed5","_id":"prettier-basic@1.0.0","_nodeVersion":"16.16.0","_npmVersion":"9.1.2","dist":{"integrity":"sha512-cBAeJbegnXLEOUX9q+xU5l8zOehkZkR9dG4VSrN95hwRqBrdGCPzYmxG9ojdgxGuX7Y2hkqKZq9tlIeAvCvOAA==","shasum":"f32cc5ea62ba2e2da4b7398ca1d79a57868e79e8","tarball":"https://registry.npmjs.org/prettier-basic/-/prettier-basic-1.0.0.tgz","fileCount":3,"unpackedSize":2175,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDj4V5nVXOi+OQpLB1kEArLvXZS1i6JUr+XGSpN6tiDBQIgGPAm2VNTJDA+sGJY2l2uAG8T72sxex/Iyk1s7x5p+Js="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRUyUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoIhw//bkUbCM/wfVz8amUFE2QZ7mlZxCI2B7s2BAbySz/nBx20KGRl\r\nJMgFuVtHIdkbVMTMJJ63DqGI2gYcKOzCPWvn9ZOYRgX/XJwUpxNHMCtk4qVc\r\nbOlfrk0qHUJXVNeit6B308cv7m2TBPtxKRSJ75Z/xI8u4M715nyTjRmbaeJL\r\neYy7UH563nGTyqNLNpBNxGvmFia7NqyTbR1eQ3fGox4VymnPgssv4KySPt/B\r\nyztJay75QxDYGAdVQGdTZ7gtAle0HlsVIGuXlvVtf7c1KOOFNl3kODEJXcbT\r\nx2tGDdWc28k9mx2lhVRDBgz4FkjeSOm1I4Ano7Rg5d8jaJ9KPgWn/+FYrkmO\r\nTyVyFbG3BKvIJ0BcYTOgeBNRDR+IS2JmMxUrxxfiuQhFhgaDEuqapLuCb5Y3\r\nrkpCxFJPKcwKsSCjxtoWKxljZbKwscBO1STsFZaD+t8Zr1VyjyDpanBkh6md\r\ncjit+hYhlnb737Oev5ejNglaHOsKhyVi0lmuT/rGFkbwtZ9O4q9ImgeH+z6H\r\nOELAv6GM4poBrHhcrvLOEEau7kPi84ztX3VTUwDLmzf5xARJRp3NzyT5C/Rl\r\no26M7yISwcCzv3teelGIbivoOjyIqfwrN6/BCQAm5Uw+dBDib2o1UCM5k2VB\r\nKgEb3HpH03iLSkVOQkf094YA05CRiOrh26k=\r\n=AHmX\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"jaret","email":"jaretburkett@gmail.com"},"directories":{},"maintainers":[{"name":"jaret","email":"jaretburkett@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/prettier-basic_1.0.0_1682263187972_0.14290046222470587"},"_hasShrinkwrap":false}},"time":{"created":"2023-04-23T15:19:47.971Z","1.0.0":"2023-04-23T15:19:48.147Z","modified":"2023-04-23T15:19:48.330Z"},"maintainers":[{"name":"jaret","email":"jaretburkett@gmail.com"}],"description":"A simple prettier configuration for formatting code","homepage":"https://github.com/jaretburkett/prettier-basic#readme","keywords":["prettier","format","config","standard","basic"],"repository":{"type":"git","url":"git+https://github.com/jaretburkett/prettier-basic.git"},"author":{"name":"Jaret Burkett","email":"jaretburkett@gmail.com"},"bugs":{"url":"https://github.com/jaretburkett/prettier-basic/issues"},"license":"MIT","readme":"# Prettier Basic\n\nThis is a simple prettier configuration that helps match the best coding standards. \nAnd by the best coding standards, I of course mean my own. I am open to suggestions and pull requests.\nThis standard is mostly based on airbnb's standard, but with some modifications. To install\n\n```bash\nnpm install --save-dev prettier prettier-basic\n# or\nyarn add --dev prettier prettier-basic\n```\n\nThen add the following to your `package.json`\n\n```json\n{\n  \"prettier\": \"prettier-basic\"\n}\n```\n\n\n**Or** for your `.prettierrc` file\n\n```json\n\"prettier-basic\"\n```\n\n**Or** to extend and change to inferior standards, you can put this in your `.prettierrc.js` file\n\n```javascript\nmodule.exports = {\n  ...require(\"prettier-basic\"),\n  semi: false,\n};\n```\n\n### Optional Configuration\nI like to add an auto format script to my `package.json` as well\n\n```json\n{\n  \"scripts\": {\n    \"format\": \"prettier --write \\\"**/*.{js,jsx,ts,tsx,css,scss,md}\\\"\"\n  }\n}\n```\n\nthen it can be run with `npm run format` or `yarn format`\n\n\n### Info\nRefer to the [prettier options](https://prettier.io/docs/en/options.html) for more information on the options.\n\nRefer to the [prettier configuration](https://prettier.io/docs/en/configuration.html) for more information on configuration.","readmeFilename":"README.md"}