2019-03-04 19:53:35 -05:00
|
|
|
{
|
|
|
|
"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",
|
2019-03-12 01:51:51 -04:00
|
|
|
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "_" }
|
2019-06-19 00:22:01 -04:00
|
|
|
],
|
|
|
|
"max-len": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"code": 80,
|
|
|
|
"tabWidth": 2,
|
|
|
|
"comments": 80,
|
|
|
|
"ignoreTrailingComments": false,
|
|
|
|
"ignoreUrls": true,
|
|
|
|
"ignoreStrings": false,
|
|
|
|
"ignoreTemplateLiterals": false,
|
|
|
|
"ignoreRegExpLiterals": false
|
|
|
|
}
|
2019-03-04 19:53:35 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|