Created
November 27, 2018 20:01
-
-
Save heypoom/8d07928724afcffca984414c89f8bbcd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"parser": "babel-eslint", | |
"extends": [ | |
"standard", | |
"plugin:react/recommended", | |
"prettier", | |
"prettier/react", | |
"prettier/standard" | |
], | |
"plugins": ["react", "prettier", "standard"], | |
"parserOptions": { | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"env": { | |
"es6": true, | |
"node": true | |
}, | |
"rules": { | |
"prettier/prettier": [ | |
"error", | |
{ | |
"printWidth": 80, | |
"tabWidth": 2, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"bracketSpacing": false, | |
"semi": false, | |
"useTabs": false, | |
"parser": "babylon", | |
"jsxBracketSameLine": true | |
} | |
], | |
"eqeqeq": ["error", "always"], | |
"space-before-function-paren": 0, | |
"generator-star-spacing": 0, | |
"react/prop-types": 0, | |
"react/display-name": 0, | |
"import/no-unresolved": [1, { | |
"commonjs": true, | |
"amd": true | |
}], | |
"import/named": 2, | |
"import/namespace": 2, | |
"import/default": 2, | |
"import/export": 2 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment