mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
24 lines
634 B
JSON
24 lines
634 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"plugins": ["@typescript-eslint"],
|
||
|
"extends": [
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"prettier",
|
||
|
"prettier/@typescript-eslint"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/array-type": ["error", "array-simple"],
|
||
|
"@typescript-eslint/explicit-member-accessibility": ["off"],
|
||
|
"@typescript-eslint/no-non-null-assertion": ["off"],
|
||
|
"@typescript-eslint/no-parameter-properties": ["off"],
|
||
|
"@typescript-eslint/no-unused-vars": [
|
||
|
"error",
|
||
|
{ "argsIgnorePattern": "^_" }
|
||
|
]
|
||
|
}
|
||
|
}
|