1
0
Fork 0
toolkit/.eslintrc.json

22 lines
542 B
JSON
Raw Normal View History

2019-05-21 14:34:23 +00:00
{
"plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/es6"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
2019-05-21 19:23:21 +00:00
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}]
2019-05-21 14:34:23 +00:00
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
}
2019-05-21 19:23:21 +00:00
}