Skip to content

Commit f600e67

Browse files
committed
Run ESLint Prettier on all files anyways
1 parent 638f702 commit f600e67

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.eslintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"root": true,
3-
"extends": ["plugin:@cspell/recommended"],
3+
"extends": [
4+
"plugin:@cspell/recommended",
5+
// Enables eslint-plugin-prettier and eslint-config-prettier.
6+
// This will display Prettier errors as ESLint errors.
7+
// This should always be the last configuration in the extends array.
8+
"plugin:prettier/recommended"
9+
],
410
"overrides": [
511
/*
612
* Typescript files.

0 commit comments

Comments
 (0)