We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aede738 commit 39b3058Copy full SHA for 39b3058
README.md
@@ -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