mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
23 lines
634 B
JSON
23 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": "^_" }
|
|
]
|
|
}
|
|
}
|