.eslintrc.json 208 B

1234567891011121314
  1. {
  2. "rules": {
  3. "indent": [2, "tab"]
  4. },
  5. "parserOptions": {
  6. "ecmaVersion": 6,
  7. "sourceType": "module"
  8. },
  9. "plugins": [ "html" ],
  10. "settings": {
  11. "html/indent": "tab",
  12. "html/report-bad-indent": 2
  13. }
  14. }