chardet/.eslintrc.json

11 lines
328 B
JSON
Raw Normal View History

2020-09-23 02:16:38 +00:00
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "_" }],
2020-09-23 03:06:43 +00:00
"@typescript-eslint/no-inferrable-types": ["off"]
2020-09-23 02:16:38 +00:00
}
}