cherrypick/.eslintrc

14 lines
182 B
Plaintext
Raw Normal View History

2018-02-19 18:26:20 +09:00
{
"parserOptions": {
2019-07-03 20:20:02 +09:00
"parser": "@typescript-eslint/parser"
2018-02-19 18:26:20 +09:00
},
"extends": [
2021-03-13 00:18:41 +09:00
"eslint:recommended"
2018-02-19 18:26:20 +09:00
],
"rules": {
2018-02-20 12:38:45 +09:00
"no-console": 0,
2018-02-21 02:53:34 +09:00
"no-unused-vars": 0,
"no-empty": 0
2018-02-19 18:26:20 +09:00
}
}