@kazion/create-app
Version:
A cli tool to help you get started with graphql and rest api's with typescript
42 lines (41 loc) • 959 B
JSON
{
"env": {
"browser": true,
"es2021": true
},
"extends": "standard-with-typescript",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"overrides": [
{
"files": ["*.ts"]
}
],
"rules": {
"no-var": "off",
"@typescript-eslint/semi": "off",
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/space-before-function-paren": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
},
"ignorePatterns": [
"src/**/*.test.ts",
"prisma",
"./*.js",
"dist/**/*",
"node_modules/**/*"
]
}