UNPKG

507 BPlain TextView Raw
1{
2 "extends": "airbnb",
3 "globals": {
4 "describe": "readonly",
5 "it": "readonly"
6 },
7 "plugins": [
8 "chai-friendly"
9 ],
10 "rules": {
11 "func-names": ["error", "never"],
12 "semi": 2,
13 "no-console": "off",
14 "jsx-a11y/href-no-hash": "off",
15 "no-unused-expressions": 0,
16 "chai-friendly/no-unused-expressions": 2,
17 "curly": 0,
18 "max-len": [1, {"code": 150, "tabWidth": 4, "ignoreUrls": true}]
19 },
20 "parserOptions": {
21 "ecmaVersion": 6,
22 "sourceType": "module"
23 }
24}