@wakamsha/eslint-config
Version:
wakamsha's ESLint rules as an extensible shared config.
17 lines (14 loc) • 500 B
JavaScript
// @ts-check
import testEssentials from './test/essentials.js';
import testReact from './test/react.js';
const test = {
essentials: testEssentials,
react: testReact,
};
export { default as essentials } from './essentials.js';
export { default as jsdoc } from './jsdoc.js';
export { default as node } from './node.js';
export { default as react } from './react.js';
export { default as storybook } from './storybook.js';
export { default as typescript } from './typescript.js';
export { test };