@vp-tw/eslint-config 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,11 +4,13 @@ ViPro's ESLint configuration.
4
4
 
5
5
  - Built on top of [antfu/eslint-config](https://github.com/antfu/eslint-config).
6
6
  - Integrates with:
7
- - [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
8
- - [eslint-mdx](https://github.com/mdx-js/eslint-mdx)
9
- - [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook)
10
7
  - [eslint-plugin-react-compiler](https://www.npmjs.com/package/eslint-plugin-react-compiler)
11
8
  - [eslint-plugin-package-json](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json)
9
+ - [@emotion/eslint-plugin](https://www.npmjs.com/package/@emotion/eslint-plugin)
10
+ - [@tanstack/eslint-plugin-query](https://www.npmjs.com/package/@tanstack/eslint-plugin-query)
11
+ - [eslint-mdx](https://github.com/mdx-js/eslint-mdx)
12
+ - [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook)
13
+ - [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
12
14
  - Fine-tuned to provide an opinionated, optimal DX. Please copy the VSCode settings from [eslint-config.code-workspace](https://github.com/VdustR/eslint-config/blob/main/eslint-config.code-workspace).
13
15
 
14
16
  Check [here](https://vdustr.dev/eslint-config) to preview the ESLint inspection.
@@ -38,9 +40,15 @@ const prettierignorePath = path.resolve(__dirname, ".prettierignore");
38
40
  export default vdustr(
39
41
  {
40
42
  // By default, we disable `stylistic` and use `prettier` instead.
41
- // stylistic: true,
42
- storybook: true,
43
- mdx: true,
43
+ // stylistic: false,
44
+
45
+ // Defaults
46
+ packageJson: true,
47
+ emotion: false,
48
+ tanstackQuery: false,
49
+ mdx: false,
50
+ storybook: false,
51
+ prettier: true,
44
52
  },
45
53
  includeIgnoreFile(prettierignorePath),
46
54
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vp-tw/eslint-config",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "ViPro's ESLint configuration",
5
5
  "homepage": "https://github.com/vdustr/eslint-config",
6
6
  "author": {