@yasainet/eslint 0.0.19 → 0.0.21
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/package.json +1 -1
- package/src/common/constants.mjs +1 -0
- package/src/common/naming.mjs +1 -1
- package/src/common/plugins.mjs +1 -0
- package/src/common/rules.mjs +1 -0
- package/src/deno/index.mjs +1 -0
- package/src/next/directives.mjs +1 -0
- package/src/next/index.mjs +1 -0
- package/src/next/naming.mjs +1 -0
- package/src/node/index.mjs +1 -0
package/package.json
CHANGED
package/src/common/constants.mjs
CHANGED
package/src/common/naming.mjs
CHANGED
package/src/common/plugins.mjs
CHANGED
|
@@ -3,6 +3,7 @@ import checkFile from "eslint-plugin-check-file";
|
|
|
3
3
|
import jsdocPlugin from "eslint-plugin-jsdoc";
|
|
4
4
|
import simpleImportSortPlugin from "eslint-plugin-simple-import-sort";
|
|
5
5
|
|
|
6
|
+
/** @description Shared plugin instances used across ESLint configs */
|
|
6
7
|
export const plugins = {
|
|
7
8
|
"@stylistic": stylistic,
|
|
8
9
|
"check-file": checkFile,
|
package/src/common/rules.mjs
CHANGED
package/src/deno/index.mjs
CHANGED
package/src/next/directives.mjs
CHANGED
package/src/next/index.mjs
CHANGED
|
@@ -5,6 +5,7 @@ import { directivesConfigs } from "./directives.mjs";
|
|
|
5
5
|
import { importPathStyleConfigs } from "./imports.mjs";
|
|
6
6
|
import { namingConfigs } from "./naming.mjs";
|
|
7
7
|
|
|
8
|
+
/** @description Next.js ESLint flat config entry point */
|
|
8
9
|
export const eslintConfig = [
|
|
9
10
|
...createCommonConfigs("src/features"),
|
|
10
11
|
...libBoundaryConfigs,
|
package/src/next/naming.mjs
CHANGED