Skip to content

Commit

Permalink
chore: update deps. and devDeps.
Browse files Browse the repository at this point in the history
Also:
- fix: great eye node
  • Loading branch information
brettz9 committed Dec 23, 2024
1 parent 50cc411 commit 9abe267
Show file tree
Hide file tree
Showing 55 changed files with 1,626 additions and 1,990 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# eslint-config-ash-nazg CHANGES

## 36.22.0

- fix: great eye node
- chore: update deps. and devDeps.

## 36.21.0

- fix: disable redundant sonarjs/no-unused-expressions
Expand Down
2 changes: 1 addition & 1 deletion dist/babel.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion dist/bare.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: {
name: string;
rules: {
'no-restricted-imports': ["error", {
paths: string[];
}];
};
}[];
export default _default;
//# sourceMappingURL=bare.d.ts.map
2 changes: 1 addition & 1 deletion dist/bare.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion dist/browser.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: ({
readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
} | {
name: string;
files?: Array<string | string[]>;
ignores?: string[];
language?: string;
languageOptions?: import("eslint").Linter.LanguageOptions;
linterOptions?: import("eslint").Linter.LinterOptions;
processor?: string | import("eslint").Linter.Processor;
plugins?: Record<string, import("eslint").ESLint.Plugin>;
rules?: Partial<import("eslint").Linter.RulesRecord> | undefined;
settings?: Record<string, unknown>;
})[];
export default _default;
//# sourceMappingURL=browser.d.ts.map
2 changes: 1 addition & 1 deletion dist/browser.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cypress.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
export default _default;
//# sourceMappingURL=cypress.d.ts.map
2 changes: 1 addition & 1 deletion dist/cypress.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dist/detectEnv.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
export function pkgSatisfiesNodeVersion(pkg: {
engines?: {
node?: string;
};
}, range: string): boolean | (() => never);
export function pkgSatisfiesBrowserVersion(pkg: {
browserslist?: string[] | string;
}, range: string): boolean;
export namespace languageOptions {
export { globals };
export { ecmaVersion };
Expand Down
2 changes: 1 addition & 1 deletion dist/detectEnv.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/eslint.config.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

115 changes: 114 additions & 1 deletion dist/explicitly-unused.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,116 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: {
name: string;
rules: {
'@stylistic/function-call-argument-newline': "off";
'@stylistic/lines-around-comment': "off";
'@stylistic/newline-per-chained-call': "off";
'@stylistic/one-var-declaration-per-line': "off";
'@stylistic/padding-line-between-statements': "off";
'array-element-newline': "off";
'arrow-body-style': "off";
'func-names': "off";
'func-style': "off";
'id-blacklist': "off";
'id-denylist': "off";
'id-length': "off";
'id-match': "off";
'init-declarations': "off";
'line-comment-position': "off";
'logical-assignment-operators': "off";
'max-classes-per-file': "off";
'max-depth': "off";
'max-lines-per-function': "off";
'max-lines': "off";
'max-params': "off";
'multiline-comment-style': "off";
'no-continue': "off";
'no-inline-comments': "off";
'no-invalid-this': "off";
'no-multi-assign': "off";
'no-negated-condition': "off";
'no-nested-ternary': "off";
'no-param-reassign': "off";
'no-restricted-exports': "off";
'no-restricted-imports': "off";
'no-restricted-modules': "off";
'no-return-await': "off";
'no-ternary': "off";
'no-undefined': "off";
'no-underscore-dangle': "off";
'no-useless-concat': "off";
'prefer-arrow-callback': "off";
'prefer-object-has-own': "off";
'prefer-template': "off";
'require-atomic-updates': "off";
'sort-imports': "off";
'sort-keys': "off";
'sort-vars': "off";
'callback-return': "off";
'global-require': "off";
'no-mixed-requires': "off";
'no-process-env': "off";
'no-sync': "off";
'n/no-hide-core-modules': "off";
'n/no-unsupported-features': "off";
'import/imports-first': "off";
'unicorn/regex-shorthand': "off";
'import/consistent-type-specifier-style': "off";
'import/dynamic-import-chunkname': "off";
'import/exports-last': "off";
'import/group-exports': "off";
'import/max-dependencies': "off";
'import/no-cycle': "off";
'import/no-default-export': "off";
'import/no-import-module-exports': "off";
'import/no-internal-modules': "off";
'import/no-named-export': "off";
'import/no-namespace': "off";
'import/no-nodejs-modules': "off";
'import/no-relative-packages': "off";
'import/no-relative-parent-imports': "off";
'import/no-restricted-paths': "off";
'import/no-unassigned-import': "off";
'import/prefer-default-export': "off";
'n/file-extension-in-import': "off";
'n/no-restricted-import': "off";
'n/no-restricted-require': "off";
'promise/no-native': "off";
'eslint-comments/no-restricted-disable': "off";
'eslint-comments/no-use': "off";
'jsdoc/no-blank-blocks': "off";
'jsdoc/no-defaults': "off";
'jsdoc/require-description-complete-sentence': "off";
'jsdoc/require-hyphen-before-param-description': "off";
'jsdoc/require-file-overview': "off";
'jsdoc/match-name': "off";
'jsdoc/informative-docs': "off";
'jsdoc/no-blank-block-descriptions': "off";
'jsdoc/no-types': "off";
'jsdoc/no-missing-syntax': "off";
'jsdoc/no-restricted-syntax': "off";
'jsdoc/sort-tags': "off";
'jsdoc/text-escaping': "off";
'sonarjs/elseif-without-else': "off";
'unicorn/no-unused-properties': "off";
'unicorn/no-keyword-prefix': "off";
'unicorn/prefer-at': "off";
'unicorn/prefer-json-parse-buffer': "off";
'unicorn/prefer-string-replace-all': "off";
'unicorn/prefer-top-level-await': "off";
'unicorn/string-content': "off";
'unicorn/no-array-instanceof': "off";
'unicorn/no-fn-reference-in-iterator': "off";
'unicorn/no-reduce': "off";
'unicorn/prefer-dataset': "off";
'unicorn/prefer-node-append': "off";
'unicorn/prefer-node-remove': "off";
'unicorn/prefer-event-key': "off";
'unicorn/prefer-flat-map': "off";
'unicorn/prefer-replace-all': "off";
'unicorn/prefer-starts-ends-with': "off";
'unicorn/prefer-text-content': "off";
'unicorn/prefer-trim-start-end': "off";
};
}[];
export default _default;
//# sourceMappingURL=explicitly-unused.d.ts.map
2 changes: 1 addition & 1 deletion dist/explicitly-unused.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/great-eye-node.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function greatEyeNode(pkg: {
type?: "module" | "commonjs";
}): import("eslint").Linter.Config[];
}, types: string[]): import("eslint").Linter.Config[];
//# sourceMappingURL=great-eye-node.d.ts.map
2 changes: 1 addition & 1 deletion dist/great-eye-node.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/great-eye.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function greatEye(pkg: {
type?: "module" | "commonjs";
}): import("eslint").Linter.Config[];
}, types: string[]): import("eslint").Linter.Config[];
//# sourceMappingURL=great-eye.d.ts.map
2 changes: 1 addition & 1 deletion dist/great-eye.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export function addFiles(cfgs: import("eslint").Linter.Config | import("eslint")
* @param {Types} types
* @param {import('eslint').Linter.Config} [config]
*/
export default function index(types: Types, config?: import("eslint").Linter.Config<import("eslint").Linter.RulesRecord> | undefined): import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
export default function index(types: Types, config?: import("eslint").Linter.Config): import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
export type Types = ("great-eye" | "sauron" | "saruman" | "polyglot" | "bare" | "node" | "browser" | "script" | "module" | "no-overrides" | "no-cypress" | "mocha" | "babel" | "third-party")[];
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/main.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/mocha-plus.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare const _default: ESLintConfig[];
declare const _default: import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
export default _default;
export type ESLintConfig = import("eslint").Linter.Config;
//# sourceMappingURL=mocha-plus.d.ts.map
2 changes: 1 addition & 1 deletion dist/mocha-plus.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 17 additions & 1 deletion dist/mocha.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: {
name: string;
files: string[];
languageOptions: {
globals: {
after: "readonly";
afterEach: "readonly";
before: "readonly";
beforeEach: "readonly";
describe: "readonly";
it: "readonly";
mocha: "readonly";
xdescribe: "readonly";
xit: "readonly";
};
};
}[];
export default _default;
//# sourceMappingURL=mocha.d.ts.map
2 changes: 1 addition & 1 deletion dist/mocha.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion dist/modules.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: {
name: string;
languageOptions: {
parserOptions: {
ecmaFeatures: {
globalReturn: false;
};
};
sourceType: "module";
globals: {
__dirname: "off";
__filename: "off";
exports: "off";
module: "off";
require: "off";
};
};
}[];
export default _default;
//# sourceMappingURL=modules.d.ts.map
2 changes: 1 addition & 1 deletion dist/modules.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/node.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion dist/overrides-module.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: {
name: string;
rules: {
'compat/compat': "off";
'no-console': "off";
'unicorn/no-anonymous-default-export': "off";
'import/no-anonymous-default-export': "off";
'n/no-process-env': "off";
};
}[];
export default _default;
//# sourceMappingURL=overrides-module.d.ts.map
2 changes: 1 addition & 1 deletion dist/overrides-module.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion dist/overrides-script.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
declare const _default: import("eslint").Linter.Config[];
declare const _default: {
name: string;
rules: {
'compat/compat': "off";
'no-console': "off";
'n/no-process-env': "off";
};
}[];
export default _default;
//# sourceMappingURL=overrides-script.d.ts.map
2 changes: 1 addition & 1 deletion dist/overrides-script.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/overrides.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9abe267

Please sign in to comment.