UNPKG

390 BJavaScriptView Raw
1module.exports = {
2 extends: ["airbnb-base", "@tokenfoundry/eslint-config/base"],
3 parser: "babel-eslint",
4 parserOptions: {
5 ecmaVersion: 2018,
6 sourceType: "module",
7 ecmaFeatures: {
8 experimentalObjectRestSpread: true,
9 },
10 },
11 rules: {
12 "prettier/prettier": [
13 "error",
14 {
15 printWidth: 80,
16 trailingComma: "all",
17 },
18 ],
19 },
20};