UNPKG

create-bananass

Version:

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

27 lines (22 loc) 614 B
import { defineConfig, globalIgnores } from 'eslint/config'; import js from 'eslint-config-bananass/js'; import ts from 'eslint-config-bananass/ts'; export default defineConfig([ // Bananass build directory. // Rename it if you change the `outDir` field in `bananass.config.cts`. globalIgnores(['**/.bananass/']), js, ts, // 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.