misskey/.eslintrc

14 lines
182 B
Plaintext
Raw Normal View History

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