UNPKG

qwerty-dubeolsik

Version:

⌨ This library allows you to easily convert Korean keys to English or English keys to Korean on a QWERTY keyboard.

28 lines (27 loc) 649 B
module.exports = { parserOptions: { project: "./tsconfig.json", }, plugins: ["prettier", "unused-imports"], extends: [ "airbnb-base", "airbnb-typescript/base", "plugin:prettier/recommended", "plugin:jest/recommended", ], rules: { "func-names": "off", "prettier/prettier": "error", "no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off", "unused-imports/no-unused-imports": "error", "unused-imports/no-unused-vars": [ "warn", { vars: "all", varsIgnorePattern: "^_", args: "after-used", argsIgnorePattern: "^_", }, ], }, };