oav/.eslintrc.js

51 строка
1.4 KiB
JavaScript

// /*
// 👋 Hi! This file was autogenerated by tslint-to-eslint-config.
// https://github.com/typescript-eslint/tslint-to-eslint-config
// It represents the closest reasonable ESLint configuration to this
// project's original TSLint configuration.
// We recommend eventually switching this configuration to extend from
// the recommended rulesets in typescript-eslint.
// https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md
// Happy linting! 💖
// */
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
parser: "@typescript-eslint/parser",
parserOptions: {
sourceType: "module",
tsconfigRootDir: __dirname,
},
plugins: ["@typescript-eslint", "import", "prettier"],
extends: [
"plugin:prettier/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
],
rules: {
"import/order": "error",
"import/namespace": "off",
"@typescript-eslint/typedef": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/array-type": [
"error",
{
default: "array-simple",
},
],
},
};