@kitschpatrol/shared-config 1.0.0 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/shared-config",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Linting and formatting for web projects.",
6
6
  "repository": {
@@ -30,13 +30,13 @@
30
30
  "scripts"
31
31
  ],
32
32
  "dependencies": {
33
- "@kitschpatrol/eslint-config": "1.0.0",
34
- "@kitschpatrol/npm-config": "1.0.0",
35
- "@kitschpatrol/vscode-config": "1.0.0",
36
- "@kitschpatrol/prettier-config": "1.0.0",
37
- "@kitschpatrol/stylelint-config": "1.0.0",
38
- "@kitschpatrol/markdownlint-config": "1.0.0",
39
- "@kitschpatrol/cspell-config": "1.0.0"
33
+ "@kitschpatrol/cspell-config": "1.0.1",
34
+ "@kitschpatrol/markdownlint-config": "1.0.1",
35
+ "@kitschpatrol/eslint-config": "1.0.1",
36
+ "@kitschpatrol/stylelint-config": "1.0.1",
37
+ "@kitschpatrol/npm-config": "1.0.1",
38
+ "@kitschpatrol/vscode-config": "1.0.1",
39
+ "@kitschpatrol/prettier-config": "1.0.1"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
package/readme.md CHANGED
@@ -29,7 +29,7 @@ It's only been tested with `pnpm`.
29
29
  2. Install the package:
30
30
 
31
31
  ```sh
32
- pnpm add @kitschpatrol/shared-config
32
+ pnpm add -D @kitschpatrol/shared-config
33
33
  ```
34
34
 
35
35
  3. Add default config files for all the tools to your project root:
@@ -14,7 +14,7 @@ const commands = stylePrefixes([
14
14
  },
15
15
  // Other commands...
16
16
  {
17
- command: 'stylelint --allow-empty-input "**/*.{css,scss,sass,svelte,html,astro}"',
17
+ command: 'stylelint --ignore-path .gitignore --allow-empty-input "**/*.{css,scss,sass,svelte,html,astro}"',
18
18
  fixArgument: '--fix',
19
19
  lintArgument: '',
20
20
  prefix: 'Stylelint',