Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/3846masa/configs
https://github.com/3846masa/configs
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/3846masa/configs
- Owner: 3846masa
- License: mit
- Created: 2022-05-02T13:04:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T15:17:48.000Z (1 day ago)
- Last Synced: 2024-11-15T16:26:33.030Z (1 day ago)
- Language: JavaScript
- Size: 1.2 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @3846masa/configs
## Install
```
yarn add --dev github:3846masa/configs
```## Usage
### TypeScript
```json
// tsconfig.json
{
"extends": "@3846masa/configs/typescript/tsconfig.json"
}
```### ESLint
```js
// eslint.config.mjs
import { configs as sharedConfigs } from '@3846masa/configs/eslint/config.mjs';/** @type {import('eslint').Linter.FlatConfig[]} */
const configs = [...sharedConfigs];export default configs;
```### Prettier
```js
// prettier.config.mjs
import { config as sharedConfig } from '@3846masa/configs/prettier/config.mjs';export default {
...sharedConfig,
};
```### Renovate
```json
// renovate.json
{
"extends": ["github>3846masa/configs//renovate/default"]
}
```## License
MIT (c) 3846masa