UNPKG

460 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 easliy copy-paste-able to a real .eslintrc file
17 "quotes": "off",
18 "quote-props": "off"
19 }
20}