UNPKG

765 BJSONView Raw
1{
2 "root": true,
3 "env": {
4 "browser": true,
5 "es6": true,
6 "node": true,
7 "mocha": true
8 },
9 "extends": [
10 "standard",
11 "standard-react",
12 "plugin:react-pug/all"
13 ],
14 "globals": {
15 "Atomics": "readonly",
16 "SharedArrayBuffer": "readonly"
17 },
18 "parser": "babel-eslint",
19 "parserOptions": {
20 "ecmaFeatures": {
21 "legacyDecorators": true,
22 "jsx": true
23 },
24 "ecmaVersion": 10,
25 "sourceType": "module"
26 },
27 "plugins": [
28 "react",
29 "react-pug"
30 ],
31 "rules": {
32 "prefer-const": "off",
33 "react/jsx-handler-names": "off",
34 "react/prop-types": "off",
35 "react-pug/empty-lines": "off",
36 "react-pug/no-interpolation": "off",
37 "react-pug/prop-types": "off",
38 "react-pug/quotes": "off"
39 }
40}