選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "root": true,
  3. "parser": "babel-eslint",
  4. "parserOptions": {
  5. "sourceType": "module"
  6. },
  7. "env": {
  8. "es6": true,
  9. "node": true,
  10. "browser": true
  11. },
  12. "plugins": ["prettier"],
  13. "extends": ["eslint:recommended", "plugin:prettier/recommended"],
  14. "globals": {
  15. "__VERSION__": false,
  16. "__TIME__": false,
  17. "__AUTHOR__": false,
  18. "__HOME_PAGE__": false,
  19. "__REPOSITORY__": false,
  20. "echarts": false,
  21. "mapv": false,
  22. "DC": false,
  23. "Cesium": false,
  24. "@dc-modules": false
  25. },
  26. "rules": {
  27. "global-require": 0,
  28. "indent": 0,
  29. "no-new": 0,
  30. "camelcase": 0,
  31. "padded-blocks": 0,
  32. "no-unused-vars": 0,
  33. "no-trailing-spaces": 0,
  34. "no-mixed-spaces-and-tabs": 0,
  35. "space-before-function-paren": [0, "always"],
  36. "no-multiple-empty-lines": 0
  37. }
  38. }