* chore(deps): bump the non-breaking-changes group with 9 updates Bumps the non-breaking-changes group with 9 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.0` | `22.5.1` | | [turbo](https://github.com/vercel/turborepo) | `2.0.14` | `2.1.0` | | [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.241` | `2.2.242` | | [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.14` | `0.5.15` | | [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.4.0` | `19.4.1` | | [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.2.2` | `19.4.1` | | [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.0.14` | `2.1.0` | | [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) | `3.2.0` | `3.3.0` | | [stylelint](https://github.com/stylelint/stylelint) | `16.8.2` | `16.9.0` | Updates `@types/node` from 22.5.0 to 22.5.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `turbo` from 2.0.14 to 2.1.0 - [Release notes](https://github.com/vercel/turborepo/releases) - [Changelog](https://github.com/vercel/turborepo/blob/main/release.md) - [Commits](https://github.com/vercel/turborepo/compare/v2.0.14...v2.1.0) Updates `@iconify/json` from 2.2.241 to 2.2.242 - [Commits](https://github.com/iconify/icon-sets/compare/2.2.241...2.2.242) Updates `@tailwindcss/typography` from 0.5.14 to 0.5.15 - [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss-typography/compare/v0.5.14...v0.5.15) Updates `@commitlint/cli` from 19.4.0 to 19.4.1 - [Release notes](https://github.com/conventional-changelog/commitlint/releases) - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.4.1/@commitlint/cli) Updates `@commitlint/config-conventional` from 19.2.2 to 19.4.1 - [Release notes](https://github.com/conventional-changelog/commitlint/releases) - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.4.1/@commitlint/config-conventional) Updates `eslint-config-turbo` from 2.0.14 to 2.1.0 - [Release notes](https://github.com/vercel/turborepo/releases) - [Changelog](https://github.com/vercel/turborepo/blob/main/release.md) - [Commits](https://github.com/vercel/turborepo/commits/v2.1.0/packages/eslint-config-turbo) Updates `eslint-plugin-perfectionist` from 3.2.0 to 3.3.0 - [Release notes](https://github.com/azat-io/eslint-plugin-perfectionist/releases) - [Changelog](https://github.com/azat-io/eslint-plugin-perfectionist/blob/main/changelog.md) - [Commits](https://github.com/azat-io/eslint-plugin-perfectionist/compare/v3.2.0...v3.3.0) Updates `stylelint` from 16.8.2 to 16.9.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.8.2...16.9.0) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: turbo dependency-type: direct:development update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: "@iconify/json" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: "@tailwindcss/typography" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: "@commitlint/cli" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: "@commitlint/config-conventional" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: eslint-config-turbo dependency-type: direct:production update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: eslint-plugin-perfectionist dependency-type: direct:development update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: non-breaking-changes ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update deps * chore: update ci --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: vince <vince292007@gmail.com>
243 lines
7.6 KiB
TypeScript
243 lines
7.6 KiB
TypeScript
import type { Linter } from 'eslint';
|
|
|
|
// @ts-expect-error - no types
|
|
import js from '@eslint/js';
|
|
import pluginUnusedImports from 'eslint-plugin-unused-imports';
|
|
import globals from 'globals';
|
|
|
|
export async function javascript(): Promise<Linter.Config[]> {
|
|
return [
|
|
{
|
|
languageOptions: {
|
|
ecmaVersion: 'latest',
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.es2021,
|
|
...globals.node,
|
|
document: 'readonly',
|
|
navigator: 'readonly',
|
|
window: 'readonly',
|
|
},
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
sourceType: 'module',
|
|
},
|
|
linterOptions: {
|
|
reportUnusedDisableDirectives: true,
|
|
},
|
|
plugins: {
|
|
'unused-imports': pluginUnusedImports,
|
|
},
|
|
rules: {
|
|
...js.configs.recommended.rules,
|
|
'accessor-pairs': [
|
|
'error',
|
|
{ enforceForClassMembers: true, setWithoutGet: true },
|
|
],
|
|
'array-callback-return': 'error',
|
|
'block-scoped-var': 'error',
|
|
'constructor-super': 'error',
|
|
'default-case-last': 'error',
|
|
'dot-notation': ['error', { allowKeywords: true }],
|
|
eqeqeq: ['error', 'always'],
|
|
'keyword-spacing': 'off',
|
|
|
|
'new-cap': [
|
|
'error',
|
|
{ capIsNew: false, newIsCap: true, properties: true },
|
|
],
|
|
'no-alert': 'error',
|
|
'no-array-constructor': 'error',
|
|
'no-async-promise-executor': 'error',
|
|
'no-caller': 'error',
|
|
'no-case-declarations': 'error',
|
|
'no-class-assign': 'error',
|
|
'no-compare-neg-zero': 'error',
|
|
'no-cond-assign': ['error', 'always'],
|
|
'no-console': ['error', { allow: ['warn', 'error'] }],
|
|
'no-const-assign': 'error',
|
|
'no-control-regex': 'error',
|
|
'no-debugger': 'error',
|
|
'no-delete-var': 'error',
|
|
'no-dupe-args': 'error',
|
|
'no-dupe-class-members': 'error',
|
|
'no-dupe-keys': 'error',
|
|
'no-duplicate-case': 'error',
|
|
'no-empty': ['error', { allowEmptyCatch: true }],
|
|
'no-empty-character-class': 'error',
|
|
'no-empty-function': 'off',
|
|
'no-empty-pattern': 'error',
|
|
'no-eval': 'error',
|
|
'no-ex-assign': 'error',
|
|
'no-extend-native': 'error',
|
|
'no-extra-bind': 'error',
|
|
'no-extra-boolean-cast': 'error',
|
|
'no-fallthrough': 'error',
|
|
'no-func-assign': 'error',
|
|
'no-global-assign': 'error',
|
|
'no-implied-eval': 'error',
|
|
'no-import-assign': 'error',
|
|
'no-invalid-regexp': 'error',
|
|
'no-irregular-whitespace': 'error',
|
|
'no-iterator': 'error',
|
|
'no-labels': ['error', { allowLoop: false, allowSwitch: false }],
|
|
'no-lone-blocks': 'error',
|
|
'no-loss-of-precision': 'error',
|
|
'no-misleading-character-class': 'error',
|
|
'no-multi-str': 'error',
|
|
'no-new': 'error',
|
|
'no-new-func': 'error',
|
|
'no-new-object': 'error',
|
|
'no-new-symbol': 'error',
|
|
'no-new-wrappers': 'error',
|
|
'no-obj-calls': 'error',
|
|
'no-octal': 'error',
|
|
'no-octal-escape': 'error',
|
|
'no-proto': 'error',
|
|
'no-prototype-builtins': 'error',
|
|
'no-redeclare': ['error', { builtinGlobals: false }],
|
|
'no-regex-spaces': 'error',
|
|
'no-restricted-globals': [
|
|
'error',
|
|
{ message: 'Use `globalThis` instead.', name: 'global' },
|
|
{ message: 'Use `globalThis` instead.', name: 'self' },
|
|
],
|
|
'no-restricted-properties': [
|
|
'error',
|
|
{
|
|
message:
|
|
'Use `Object.getPrototypeOf` or `Object.setPrototypeOf` instead.',
|
|
property: '__proto__',
|
|
},
|
|
{
|
|
message: 'Use `Object.defineProperty` instead.',
|
|
property: '__defineGetter__',
|
|
},
|
|
{
|
|
message: 'Use `Object.defineProperty` instead.',
|
|
property: '__defineSetter__',
|
|
},
|
|
{
|
|
message: 'Use `Object.getOwnPropertyDescriptor` instead.',
|
|
property: '__lookupGetter__',
|
|
},
|
|
{
|
|
message: 'Use `Object.getOwnPropertyDescriptor` instead.',
|
|
property: '__lookupSetter__',
|
|
},
|
|
],
|
|
'no-restricted-syntax': [
|
|
'error',
|
|
'DebuggerStatement',
|
|
'LabeledStatement',
|
|
'WithStatement',
|
|
'TSEnumDeclaration[const=true]',
|
|
'TSExportAssignment',
|
|
],
|
|
'no-self-assign': ['error', { props: true }],
|
|
'no-self-compare': 'error',
|
|
'no-sequences': 'error',
|
|
'no-shadow-restricted-names': 'error',
|
|
'no-sparse-arrays': 'error',
|
|
'no-template-curly-in-string': 'error',
|
|
'no-this-before-super': 'error',
|
|
'no-throw-literal': 'error',
|
|
'no-undef': 'error',
|
|
'no-undef-init': 'error',
|
|
'no-unexpected-multiline': 'error',
|
|
'no-unmodified-loop-condition': 'error',
|
|
'no-unneeded-ternary': ['error', { defaultAssignment: false }],
|
|
'no-unreachable': 'error',
|
|
'no-unreachable-loop': 'error',
|
|
'no-unsafe-finally': 'error',
|
|
'no-unsafe-negation': 'error',
|
|
'no-unused-expressions': [
|
|
'error',
|
|
{
|
|
allowShortCircuit: true,
|
|
allowTaggedTemplates: true,
|
|
allowTernary: true,
|
|
},
|
|
],
|
|
'no-unused-vars': [
|
|
'error',
|
|
{
|
|
args: 'none',
|
|
caughtErrors: 'none',
|
|
ignoreRestSiblings: true,
|
|
vars: 'all',
|
|
},
|
|
],
|
|
'no-use-before-define': [
|
|
'error',
|
|
{ classes: false, functions: false, variables: true },
|
|
],
|
|
'no-useless-backreference': 'error',
|
|
'no-useless-call': 'error',
|
|
'no-useless-catch': 'error',
|
|
'no-useless-computed-key': 'error',
|
|
'no-useless-constructor': 'error',
|
|
'no-useless-rename': 'error',
|
|
'no-useless-return': 'error',
|
|
'no-var': 'error',
|
|
'no-with': 'error',
|
|
'object-shorthand': [
|
|
'error',
|
|
'always',
|
|
{ avoidQuotes: true, ignoreConstructors: false },
|
|
],
|
|
'one-var': ['error', { initialized: 'never' }],
|
|
'prefer-arrow-callback': [
|
|
'error',
|
|
{
|
|
allowNamedFunctions: false,
|
|
allowUnboundThis: true,
|
|
},
|
|
],
|
|
'prefer-const': [
|
|
'error',
|
|
{
|
|
destructuring: 'all',
|
|
ignoreReadBeforeAssign: true,
|
|
},
|
|
],
|
|
'prefer-exponentiation-operator': 'error',
|
|
|
|
'prefer-promise-reject-errors': 'error',
|
|
'prefer-regex-literals': ['error', { disallowRedundantWrapping: true }],
|
|
'prefer-rest-params': 'error',
|
|
'prefer-spread': 'error',
|
|
'prefer-template': 'error',
|
|
'space-before-function-paren': 'off',
|
|
'spaced-comment': 'error',
|
|
'symbol-description': 'error',
|
|
'unicode-bom': ['error', 'never'],
|
|
|
|
'unused-imports/no-unused-imports': 'error',
|
|
'unused-imports/no-unused-vars': [
|
|
'error',
|
|
{
|
|
args: 'after-used',
|
|
argsIgnorePattern: '^_',
|
|
vars: 'all',
|
|
varsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'use-isnan': [
|
|
'error',
|
|
{ enforceForIndexOf: true, enforceForSwitchCase: true },
|
|
],
|
|
'valid-typeof': ['error', { requireStringLiterals: true }],
|
|
|
|
'vars-on-top': 'error',
|
|
yoda: ['error', 'never'],
|
|
},
|
|
},
|
|
];
|
|
}
|