mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-18 22:02:09 +01:00
22 lines
644 B
JavaScript
22 lines
644 B
JavaScript
module.exports = {
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
},
|
|
plugins: ["@typescript-eslint/eslint-plugin"],
|
|
extends: ["plugin:@typescript-eslint/recommended"],
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
ignorePatterns: [".eslintrc.js", "dist", "tslint.json", "node_modules"],
|
|
rules: {
|
|
"@typescript-eslint/interface-name-prefix": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
"no-console": "off",
|
|
semi: ["error", "never"],
|
|
quotes: ["error", "single", { avoidEscape: true }]
|
|
},
|
|
};
|