.eslintrc 306 B

1234567891011121314
  1. {
  2. "extends": "standard",
  3. "env": {
  4. "browser": true,
  5. "node": false,
  6. },
  7. "globals": {
  8. "Uppy": true,
  9. },
  10. "rules": {
  11. "key-spacing": [2, { "align": "colon" }],
  12. "no-multi-spaces": [2, { "exceptions": { "Property": true, "VariableDeclarator": true, "ImportDeclaration": true}}]
  13. }
  14. }