freeleaps-ops/first-class-pipeline/resources/com/freeleaps/devops/builtins/lint/eslint/eslintrc.js

18 lines
422 B
JavaScript
Raw Normal View History

module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
},
plugins: ["@typescript-eslint"],
rules: {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
curly: "warn",
eqeqeq: "warn",
"no-throw-literal": "warn",
semi: "off",
},
ignorePatterns: ["out", "dist", "**/*.d.ts"],
};