mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-12 16:41:15 +00:00
15 lines
420 B
JavaScript
15 lines
420 B
JavaScript
module.exports = {
|
|
"extends": [
|
|
"standard-with-typescript"
|
|
],
|
|
"ignorePatterns": ["*.json", "node_modules/*", ".eslintrc.cjs", "esbuild.config.js"],
|
|
"rules": {
|
|
"@typescript-eslint/array-type": "off",
|
|
"@typescript-eslint/promise-function-async": "off",
|
|
"@typescript-eslint/consistent-type-imports": "off"
|
|
},
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: './tsconfig.json',
|
|
}
|
|
} |