diff --git a/configs/eslint-config-custom/LICENSE b/configs/eslint-config-custom/LICENSE new file mode 100644 index 00000000..b92a69ab --- /dev/null +++ b/configs/eslint-config-custom/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Matthew Waldron + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/configs/eslint-config-custom/README.md b/configs/eslint-config-custom/README.md new file mode 100644 index 00000000..d1107f92 --- /dev/null +++ b/configs/eslint-config-custom/README.md @@ -0,0 +1,23 @@ +# eslint-config-custom + +## Installation + +Install dependencies: + +```bash +pnpm add -D eslint-config-custom eslint --filter [package-name] --workspace +``` + +## Getting Started + +`eslintrc.cjs` + +```js +module.exports = { + extends: ['custom/js.cjs'], +}; +``` + +## License + +MIT diff --git a/configs/jest-config/LICENSE b/configs/jest-config/LICENSE new file mode 100644 index 00000000..b92a69ab --- /dev/null +++ b/configs/jest-config/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Matthew Waldron + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/configs/jest-config/README.md b/configs/jest-config/README.md new file mode 100644 index 00000000..bc110939 --- /dev/null +++ b/configs/jest-config/README.md @@ -0,0 +1,23 @@ +# jest-config + +## Installation + +Install dependencies: + +```bash +pnpm add -D jest-config jest @types/jest --filter [package-name] --workspace +``` + +## Getting Started + +`jest.config.cjs` + +```js +module.exports = { + preset: 'jest-config', +}; +``` + +## License + +MIT diff --git a/configs/tsconfig-config/LICENSE b/configs/tsconfig-config/LICENSE new file mode 100644 index 00000000..b92a69ab --- /dev/null +++ b/configs/tsconfig-config/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Matthew Waldron + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/configs/tsconfig-config/README.md b/configs/tsconfig-config/README.md new file mode 100644 index 00000000..58c16960 --- /dev/null +++ b/configs/tsconfig-config/README.md @@ -0,0 +1,23 @@ +# tsconfig-config + +## Installation + +Install dependencies: + +```bash +pnpm add -D tsconfig-config typescript --filter [package-name] --workspace +``` + +## Getting Started + +`tsconfig.json` + +```json +{ + "extends": ["tsconfig-config/library.json"] +} +``` + +## License + +MIT