Skip to content

Commit b801b14

Browse files
chore: update tooling (#1710)
1 parent 930de52 commit b801b14

10 files changed

+1438
-18
lines changed

.cspell.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"memfs",
6+
"colorette",
7+
"noextension",
8+
"fullhash",
9+
"execa",
10+
"deepmerge",
11+
"fastify",
12+
"contextify",
13+
"middie",
14+
"cexoso",
15+
"usdz",
16+
"leadinghash",
17+
"myhtml",
18+
"configurated",
19+
"mycustom"
20+
],
21+
"ignorePaths": [
22+
"CHANGELOG.md",
23+
"package.json",
24+
"dist/**",
25+
"**/__snapshots__/**",
26+
"package-lock.json",
27+
"node_modules",
28+
"coverage",
29+
"*.log",
30+
"./test/fixtures/**",
31+
"./test/outputs/**"
32+
]
33+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ logs
55
*.log
66
npm-debug.log*
77
.eslintcache
8+
.cspellcache
89
/dist
910
/local
1011
/reports

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Here are the guidelines we'd like you to follow:
1212
## <a name="question"></a> Got a Question or Problem?
1313

1414
Please submit support requests and questions to StackOverflow using the tag [[webpack]](http://stackoverflow.com/tags/webpack).
15-
StackOverflow is better suited for this kind of support though you may also inquire in [Webpack Gitter](https://gitter.im/webpack/webpack).
15+
StackOverflow is better suited for this kind of support though you may also inquire in [Webpack discussions](https://github.com/webpack/webpack/discussions).
1616
The issue tracker is for bug reports and feature discussions.
1717

1818
## <a name="issue"></a> Found an Issue or Bug?

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ Your first-stop-shop for support for webpack-dev-server should by the excellent
522522
of those docs, please head over to the [webpack.js.org repo][wjo-url] and open a
523523
pull request.
524524

525-
From there, we encourage users to visit the [webpack Gitter chat][chat-url] and
525+
From there, we encourage users to visit the [webpack discussions][chat-url] and
526526
talk to the fine folks there. If your quest for answers comes up dry in chat,
527527
head over to [StackOverflow][stack-url] and do a quick search or open a new
528528
question. Remember; It's always much easier to answer questions that include your
@@ -586,4 +586,5 @@ Please take a moment to read our contributing guidelines if you haven't yet done
586586
[hash-url]: https://twitter.com/search?q=webpack
587587
[middleware-url]: https://github.com/webpack/webpack-dev-middleware
588588
[stack-url]: https://stackoverflow.com/questions/tagged/webpack-dev-middleware
589+
[chat-url]: https://github.com/webpack/webpack/discussions
589590
[wjo-url]: https://github.com/webpack/webpack.js.org

lint-staged.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
module.exports = {
2-
"*": ["prettier --write --ignore-unknown"],
2+
"*": [
3+
"prettier --cache --write --ignore-unknown",
4+
"cspell --cache --no-must-find-files",
5+
],
36
"*.js": ["eslint --cache --fix"],
47
};

0 commit comments

Comments
 (0)