Skip to main content
Module

x/deno/.eslintrc.json

A modern runtime for JavaScript and TypeScript.
Go to Latest
File
{ "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint"], "extends": [ "plugin:@typescript-eslint/recommended", "prettier", "prettier/@typescript-eslint" ], "rules": { "@typescript-eslint/array-type": ["error", "array-simple"], "@typescript-eslint/explicit-member-accessibility": ["off"], "@typescript-eslint/no-non-null-assertion": ["off"], "@typescript-eslint/no-parameter-properties": ["off"], "@typescript-eslint/no-unused-vars": [ "error", { "argsIgnorePattern": "^_" } ] }}