@dmitryrechkin/eslint-standard 1.4.5 → 1.4.6
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/eslint.config.mjs +2 -2
- package/package.json +1 -1
package/eslint.config.mjs
CHANGED
|
@@ -802,7 +802,7 @@ export default function ({
|
|
|
802
802
|
'error',
|
|
803
803
|
{
|
|
804
804
|
parser: 'typescript',
|
|
805
|
-
plugins: ['prettier-plugin-brace-style'],
|
|
805
|
+
plugins: [import.meta.resolve('prettier-plugin-brace-style')],
|
|
806
806
|
braceStyle: 'allman'
|
|
807
807
|
}
|
|
808
808
|
]
|
|
@@ -816,7 +816,7 @@ export default function ({
|
|
|
816
816
|
'error',
|
|
817
817
|
{
|
|
818
818
|
parser: 'astro',
|
|
819
|
-
plugins: ['prettier-plugin-astro']
|
|
819
|
+
plugins: [import.meta.resolve('prettier-plugin-astro')]
|
|
820
820
|
}
|
|
821
821
|
]
|
|
822
822
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dmitryrechkin/eslint-standard",
|
|
3
3
|
"description": "This package provides a shared ESLint configuration which includes TypeScript support and a set of specific linting rules designed to ensure high-quality and consistent code style across projects.",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.6",
|
|
5
5
|
"main": "eslint.config.mjs",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./eslint.config.mjs"
|