@dvukovic/style-guide 0.3.0 → 0.3.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/README.md CHANGED
@@ -92,7 +92,7 @@ module.exports = {
92
92
 
93
93
  ### CSpell
94
94
 
95
- Create a `cspell.config.js` in root with the following:
95
+ Create a `.cspellrc.js` in root with the following:
96
96
 
97
97
  ```javascript
98
98
  /** @type {import("cspell").FileSettings} */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvukovic/style-guide",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "My own style guide",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  "lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix && yarn lint:stylelint --fix && yarn lint:spell && yarn lint:package-json",
25
25
  "lint:package-json": "npmPkgJsonLint --configFile ./.packagerc.js .",
26
26
  "lint:prettier": "prettier --log-level=warn --check .",
27
- "lint:spell": "cspell --no-progress --no-summary --unique '**'",
27
+ "lint:spell": "cspell --config ./.cspellrc.js --no-progress --no-summary --unique '**'",
28
28
  "lint:stylelint": "stylelint ./**/*.css",
29
29
  "release": "release-it"
30
30
  },
@@ -74,3 +74,4 @@ descriptionless
74
74
  typeorm
75
75
  domagoj
76
76
  vukovic
77
+ cspellrc