UNPKG

create-bananass

Version:

Create a Bananass framework project for solving Baekjoon problems with JavaScript/TypeScript.🍌

25 lines (20 loc) 564 B
import { defineConfig, globalIgnores } from 'eslint/config'; import js from 'eslint-config-bananass/js'; export default defineConfig([ // Bananass build directory. // Rename it if you change the `outDir` field in `bananass.config.mjs`. globalIgnores(['**/.bananass/']), js, // Add your custom ESLint configuration here. // // For example: // // { // rules: { // 'no-console': 'off', // }, // } // ... ]); // Please take a look at https://eslint-config-bananass.lumir.page // which contains all the available configurations.