.eslintrc.json 321 B

12345678910111213141516
  1. {
  2. "extends": "./node_modules/aurelia-tools/.eslintrc.json",
  3. "parserOptions": {
  4. "ecmaFeatures": {
  5. "legacyDecorators": true
  6. }
  7. },
  8. "rules": {
  9. "camelcase": "off",
  10. "indent": ["warn", 4],
  11. "key-spacing": "off",
  12. "padded-blocks": "off",
  13. "radix": "off",
  14. "space-infix-ops": "warn"
  15. }
  16. }