mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
16 lines
No EOL
408 B
JavaScript
16 lines
No EOL
408 B
JavaScript
module.exports = {
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
],
|
|
"rules": {
|
|
"no-extra-boolean-cast": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
},
|
|
}; |