mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-11-21 01:16:23 +08:00
e559268be4
* build(deps-dev): bump eslint from 8.57.0 to 9.8.0 Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.8.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.57.0...v9.8.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * migrate on latest eslint config --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexandr <qwerty541zxc@gmail.com>
84 lines
2.1 KiB
JavaScript
84 lines
2.1 KiB
JavaScript
import globals from "globals";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import js from "@eslint/js";
|
|
import { FlatCompat } from "@eslint/eslintrc";
|
|
import jsdoc from "eslint-plugin-jsdoc";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all,
|
|
});
|
|
|
|
export default [
|
|
...compat.extends("prettier"),
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
...globals.browser,
|
|
},
|
|
|
|
ecmaVersion: 2022,
|
|
sourceType: "module",
|
|
},
|
|
plugins: {
|
|
jsdoc,
|
|
},
|
|
rules: {
|
|
"no-unexpected-multiline": "error",
|
|
"accessor-pairs": [
|
|
"error",
|
|
{
|
|
getWithoutSet: false,
|
|
setWithoutGet: true,
|
|
},
|
|
],
|
|
"block-scoped-var": "warn",
|
|
"consistent-return": "error",
|
|
curly: "error",
|
|
"no-alert": "error",
|
|
"no-caller": "error",
|
|
"no-warning-comments": [
|
|
"warn",
|
|
{
|
|
terms: ["TODO", "FIXME"],
|
|
location: "start",
|
|
},
|
|
],
|
|
"no-with": "warn",
|
|
radix: "warn",
|
|
"no-delete-var": "error",
|
|
"no-undef-init": "off",
|
|
"no-undef": "error",
|
|
"no-undefined": "off",
|
|
"no-unused-vars": "warn",
|
|
"no-use-before-define": "error",
|
|
"constructor-super": "error",
|
|
"no-class-assign": "error",
|
|
"no-const-assign": "error",
|
|
"no-dupe-class-members": "error",
|
|
"no-this-before-super": "error",
|
|
"object-shorthand": ["warn"],
|
|
"no-mixed-spaces-and-tabs": "warn",
|
|
"no-multiple-empty-lines": "warn",
|
|
"no-negated-condition": "warn",
|
|
"no-unneeded-ternary": "warn",
|
|
"keyword-spacing": [
|
|
"error",
|
|
{
|
|
before: true,
|
|
after: true,
|
|
},
|
|
],
|
|
"jsdoc/require-returns": "warn",
|
|
"jsdoc/require-returns-description": "warn",
|
|
"jsdoc/require-param-description": "warn",
|
|
"jsdoc/require-jsdoc": "warn",
|
|
},
|
|
},
|
|
];
|