Skip to content

Instantly share code, notes, and snippets.

@matmunn
Created September 21, 2018 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matmunn/73d51154664835f11b10b82809235ee1 to your computer and use it in GitHub Desktop.
Save matmunn/73d51154664835f11b10b82809235ee1 to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true,
"react-native/react-native": true,
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"standard",
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"react-native",
],
"settings": {
"react": {
"version": "16.3",
"flowVersion": "0.67",
}
},
"rules": {
"comma-dangle": ["error", "always-multiline"],
"indent": ["error", 2],
"no-console": "off",
"quotes": ["error", "single", { "allowTemplateLiterals": true, }],
"semi": ["error", "never"],
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment