@willbooster/eslint-config-js-react 6.4.1 → 6.5.0

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.
@@ -1,7 +1,7 @@
1
1
  const path = require('path');
2
2
 
3
3
  module.exports = {
4
- './**/*.{css,htm,html,js,json,json5,jsx,md,scss,ts,tsx,vue,yaml,yml}': (files) => {
4
+ './**/*.{cjs,css,htm,html,js,json,json5,jsx,md,mjs,scss,ts,tsx,vue,yaml,yml}': (files) => {
5
5
  const filteredFiles = files
6
6
  .filter((file) => !file.includes('/test-fixtures/'))
7
7
  .map((file) => path.relative('', file));
package/.prettierignore CHANGED
@@ -17,6 +17,7 @@ test-fixtures/
17
17
  .devcontainer/
18
18
  dist/
19
19
  temp/
20
+ Icon[
20
21
 
21
22
  # Created by https://www.toptal.com/developers/gitignore/api/windows
22
23
  # Edit at https://www.toptal.com/developers/gitignore?templates=windows
@@ -232,6 +233,9 @@ fabric.properties
232
233
  .history
233
234
  .ionide
234
235
 
236
+ # Support for Project snippet scope
237
+ !.vscode/*.code-snippets
238
+
235
239
  # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
236
240
 
237
241
  # Created by https://www.toptal.com/developers/gitignore/api/emacs
@@ -438,4 +442,14 @@ dist
438
442
  .yarn/install-state.gz
439
443
  .pnp.*
440
444
 
445
+ ### Node Patch ###
446
+ # Serverless Webpack directories
447
+ .webpack/
448
+
449
+ # Optional stylelint cache
450
+ .stylelintcache
451
+
452
+ # SvelteKit build / generate output
453
+ .svelte-kit
454
+
441
455
  # End of https://www.toptal.com/developers/gitignore/api/node
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willbooster/eslint-config-js-react",
3
- "version": "6.4.1",
3
+ "version": "6.5.0",
4
4
  "description": "A ESLint config for JavaScript projects using React",
5
5
  "license": "Apache-2.0",
6
6
  "author": "WillBooster Inc.",
@@ -8,16 +8,16 @@
8
8
  "scripts": {
9
9
  "cleanup": "yarn format",
10
10
  "format": "sort-package-json && yarn prettify",
11
- "prettify": "prettier --color --write \"**/{.*/,}*.{css,htm,html,js,json,json5,jsx,md,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\""
11
+ "prettify": "prettier --color --write \"**/{.*/,}*.{cjs,css,htm,html,js,json,json5,jsx,md,mjs,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\""
12
12
  },
13
13
  "prettier": "@willbooster/prettier-config",
14
14
  "dependencies": {
15
- "@willbooster/eslint-config-js": "^6.4.1"
15
+ "@willbooster/eslint-config-js": "^6.5.0"
16
16
  },
17
17
  "devDependencies": {
18
- "@willbooster/prettier-config": "^6.4.0",
18
+ "@willbooster/prettier-config": "^6.5.0",
19
19
  "prettier": "2.4.1",
20
- "sort-package-json": "1.52.0"
20
+ "sort-package-json": "1.53.1"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@willbooster/prettier-config": ">=6",
@@ -27,5 +27,5 @@
27
27
  "eslint-plugin-react": ">=7",
28
28
  "eslint-plugin-react-hooks": ">=2"
29
29
  },
30
- "gitHead": "d6ca00ee256fd6043089ee4928d92c0a730c7009"
30
+ "gitHead": "e3e24949984b6a755a1fbacd9c6260c101ae9c9a"
31
31
  }