12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "parser": "babel-eslint",
- "extends": ["eslint:recommended", "plugin:react/recommended"],
- "env": {
- "browser": true,
- "node": true,
- "es6": true
- },
- "parserOptions": {
- "sourceType": "module"
- },
- "plugins": [
- "react"
- ],
- "globals": {
- "ENVIRONMENT": true,
- "STANDALONE": true,
- "it": true,
- "describe": true,
- "xdescribe": true,
- "xit": true,
- "before": true,
- "beforeEach": true,
- "after": true,
- "afterEach": true
- },
- "rules": {
- "linebreak-style": [
- "error",
- "unix"
- ],
- "no-console": [
- "error",
- {
- "allow": [
- "warn",
- "error"
- ]
- }
- ],
- "react/no-deprecated": "warn"
- }
- }
|