UNPKG

363 BJavaScriptView Raw
1module.exports = {
2 "parser": "@typescript-eslint/parser",
3 "extends": [
4 "xo-space/esnext",
5 "plugin:@typescript-eslint/recommended",
6 "prettier",
7 "prettier/@typescript-eslint"
8 ],
9 "plugins": [
10 "@typescript-eslint",
11 "prettier"
12 ],
13 "rules": {
14 "prettier/prettier": "error"
15 },
16 "env": {
17 "jest": true,
18 "node": true,
19 }
20}