UNPKG

516 BPlain TextView Raw
1// need this file so that eslint cli doesnt explode
2{
3 "root": true,
4 "env": {
5 "browser": true,
6 "node": true,
7 "es6": true,
8 "jest": true,
9 "jasmine": true
10 },
11 "parserOptions": {
12 "project": "./tsconfig.json"
13 },
14 "extends": "./index.js",
15 "rules": {
16 // these rules are turned off so that the eslint JSON is valid JSON
17 "@typescript-eslint/quotes": ["error", "double"],
18 "@typescript-eslint/comma-dangle": ["error", "never"],
19 "quote-props": "off"
20 }
21}