ts-template/.eslintrc.js

21 lines
412 B
JavaScript
Raw Permalink Normal View History

2023-03-14 08:34:18 +00:00
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: [
"@typescript-eslint",
],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
],
globals: {
"console": "readonly"
},
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
"no-undef": "warn",
"no-console": "off",
"semi": ['error', 'always']
},
};