eslint-config-semistandard icon indicating copy to clipboard operation
eslint-config-semistandard copied to clipboard

Support ESLint 9 Flat Config Format

Open gtbuchanan opened this issue 2 months ago • 1 comments

Here's what I did

Upgrade to ESLint 9 and import eslint-config-semistandard

import globals from 'globals';
import semistandard from 'eslint-config-semistandard';

export default [
  semistandard,
  {
    ignores: ["dist/**"],
    languageOptions: {
      globals: {
        ...globals.browser,
        ...globals.es2021,
        ...globals.node
      }
    }
  }
];

What I expected to happen

I should be able to import semistandard in eslint.config.js and use it as a default ruleset (see eslint-config-standard usage).

https://github.com/standard/eslint-config-standard/commit/3d1284ce50d9af2ef7a8803ec6e7339c2c985730

What seems to have happened

ESLint reports the following error:

Oops! Something went wrong! :(

ESLint: 9.0.0

A config object is using the "extends" key, which is not supported in flat config system.

Instead of "extends", you can include config objects that you'd like to extend from directly in the flat config array.

Please see the following page for more information:
https://eslint.org/docs/latest/use/configure/migration-guide#predefined-and-shareable-configs

gtbuchanan avatar Apr 17 '24 14:04 gtbuchanan