Skip to content

Commit 39b3058

Browse files
committed
docs: add readme
1 parent aede738 commit 39b3058

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# GeProg eslint config
2+
3+
Opinionated eslint config for projects using Vue.js with Typescript and Jest
4+
5+
## Usage
6+
7+
```js
8+
require('@geprog/eslint-config/patch/modern-module-resolution');
9+
10+
module.exports = {
11+
extends: ['@geprog'],
12+
parserOptions: {
13+
project: ['./tsconfig.json'], // should "include" all files you want to lint
14+
tsconfigRootDir: __dirname,
15+
},
16+
};
17+
```
18+
19+
## Available configs
20+
21+
- `@geprog`
22+
- `@geprog/eslint-config/vue`
23+
- `@geprog/eslint-config/jest`
24+
25+
## Development
26+
27+
Install dependencies: `pnpm install`
28+
29+
### Publish
30+
31+
Run `pnpm publish --access public`

0 commit comments

Comments
 (0)