https://github.com/mymicds/configs
Common configs used in MyMICDS projects
https://github.com/mymicds/configs
mymicds
Last synced: 3 months ago
JSON representation
Common configs used in MyMICDS projects
- Host: GitHub
- URL: https://github.com/mymicds/configs
- Owner: MyMICDS
- License: mit
- Created: 2018-01-16T03:35:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-13T23:41:24.000Z (almost 7 years ago)
- Last Synced: 2025-02-22T16:41:35.652Z (3 months ago)
- Topics: mymicds
- Size: 6.84 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MyMICDS Common Configs
This repository houses configuration files that are commonly used in MyMICDS projects.## How to Use
### EditorConfig
Unfortunately, `.editorconfig` files cannot be shared over npm, so you will have to just copy and paste the file into your project.### ESLint
Since ESLint _requires_ scoped packages to be prefixed with `eslint-config`, the config file will have to be referred to directly by name. (TODO: Try and find a better workaround that allows you to just use `@mymicds/configs/eslint`)Install the `@mymicds/configs` package, then add the following to `.eslintrc.json`:
```json
{
"extends": "./node_modules/@mymicds/configs/eslint.json"
}
```### TSLint
Install the `@mymicds/configs` package, then add the following to `tslint.json`:
```json
{
"extends": "@mymicds/configs/tslint"
}
```