javascript icon indicating copy to clipboard operation
javascript copied to clipboard

Support flat config

Open 9takoyakii opened this issue 10 months ago • 2 comments

Pull request for support flat config.

Example:

// eslint.config.cjs
const airbnb = require('eslint-config-airbnb/flat');

module.exports = [
  ...airbnb,
  // ......
];
// eslint.config.mjs
import airbnb from 'eslint-config-airbnb/flat';

export default [
  ...airbnb,
  // ......
];

9takoyakii avatar Jan 25 '25 16:01 9takoyakii

Please do not file duplicate pull requests; if you want to change one, reuse it.

ljharb avatar Jan 25 '25 17:01 ljharb

Ok, sorry I made a duplicate pull request

ghost avatar Jan 25 '25 22:01 ghost