UNPKG

@devoplx/fastify-essentials

Version:

Streamline your Fastify development with Fastify-Essentials. This lightweight plugin integrates essential features for a smoother workflow. From advanced functionality to streamlined processes, Fastify-Essentials maximizes productivity without unnecessary

74 lines (73 loc) 1.98 kB
{ "root": true, "env": { "browser": true, "es2021": true }, "plugins": ["unused-imports", "@typescript-eslint", "prettier"], "extends": ["eslint:recommended", "prettier"], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": "latest", "sourceType": "module", "project": "./tsconfig.json", "warnOnUnsupportedTypeScriptVersion": false }, "settings": { "import/resolver": { "typescript": { "alwaysTryTypes": true } } }, "rules": { "linebreak-style": ["error", "unix"], "no-alert": 0, "camelcase": 2, "no-dupe-args": 2, "no-duplicate-imports": 2, "no-unreachable": 2, "no-console": 0, "no-empty": 2, "no-empty-function": 2, "no-var": 2, "prefer-const": 2, "array-bracket-newline": 2, "arrow-spacing": 2, "lines-around-comment": 2, "no-unused-vars": 0, "no-param-reassign": 0, "no-underscore-dangle": 0, "no-restricted-exports": 0, "no-promise-executor-return": 0, "import/prefer-default-export": 0, "@typescript-eslint/naming-convention": 0, "@typescript-eslint/no-use-before-define": 0, "prefer-destructuring": [ 1, { "object": true, "array": false } ], "@typescript-eslint/no-unused-vars": [ 1, { "args": "none" } ], "unused-imports/no-unused-imports": 0, "unused-imports/no-unused-vars": [ 0, { "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" } ] } }