Skip to content
Snippets Groups Projects
.eslintrc 697 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "extends": "airbnb",
    
    Rafael László's avatar
    Rafael László committed
      "parser": "babel-eslint",
    
      "globals": {
        "document": false
      },
      "rules": {
        "react/jsx-filename-extension": 0,
    
    Rafael László's avatar
    Rafael László committed
        "react/no-danger": 0,
    
        "jsx-quotes": ["error", "prefer-single"],
        "import/prefer-default-export": 0,
    
    Rafael László's avatar
    Rafael László committed
        "react/prop-types": 0,
        "react/destructuring-assignment": 0,
    
        "react/prefer-stateless-function": 0,
    
    Rafael László's avatar
    Rafael László committed
        "camelcase": 0,
        "no-alert": "off",
        "no-undef": "off",
        "no-console": "off",
        "no-prototype-builtins": "off",
        "import/no-cycle": "off",
        "jsx-a11y/label-has-associated-control": "off",
        "react/no-access-state-in-setstate": "off",
        "consistent-return": "off",
        "no-case-declarations": "off"